Hi
How do I change the header text font and style in the header text in Vantage Premuim. I don’t want it to be italic, I need it to be bold.
I have used the following code in the Custom CSS page:
/* Vantage Support Text */
header#masthead .hgroup .support-text {
color: #000000;
font-size: 29px;
font-style: italic;
}
I tried replacing italic with strong and bold (see below), but it made no difference, the font is still italic, and not bold:
/* Vantage Support Text */
header#masthead .hgroup .support-text {
color: #000000;
font-size: 29px;
font-style: italic;
}
/* Vantage Support Text */
header#masthead .hgroup .support-text {
color: #000000;
font-size: 29px;
font-style: strong;
}
Also, i can’t get it larger than 29px without it being on 2 lines instead of one, even though there is plenty of space.
Ok, I got it. I used the following code:
/* Vantage Support Text */
header#masthead .hgroup .support-text {
color: #000000;
font-size: 29px;
font-weight: bold;
font-style: inherit;
}
awesome thank you
I suggest anyone struggling with custom CSS watch this short video, it’s a life saver for noobs like me:
https://siteorigin.com/basics/modifying-theme-design-with-custom-css/
Hi Martin
Am glad you managed to solve this :-)
Always feel free to open a new thread whenever you require support
Cheers
Thanks Addo!
Any time :)