Hi,
In our first page (LINK), we use H2 for our middle elements texts.
But as you may see, the font’s style is different from the rest of the page:
How should I change H2 style to see it like the ones in widget areas?
Regards,
Sadegh
Hey Sadegh,
Try adding this css code in QUick CSS:
#top.home #wrap_all #av_section_1 .av_one_fifth h2 {
font-size: 22px;
font-weight: 600;
line-height: 1.1em;
text-transform: uppercase;
}
Just adjust the code as you see fit. Hope this helps.
Best regards,
Nikko
Hi Nikko,
Thanks for the codes, I’ve used them and change the parameters but still, that H2 style is completely different than the rest of the fonts in the page.
Regards,
Sadegh
Hi,
It seems like you figured it out with following code
#top.home #wrap_all #av_section_1 .av_one_fifth h2 {
font-size: 12px;
font-family: inherit;
font-style: inherit;
font-weight: 400;
line-height: 1.1em;
text-transform: uppercase;
}
Only font weight is bolder and you can correct it by using following code instead
#top.home #wrap_all #av_section_1 .av_one_fifth h2 {
font-size: 12px;
font-family: inherit;
font-style: inherit;
font-weight: lighter;
line-height: 1.1em;
text-transform: uppercase;
}
Best regards,
Yigit
Thanks a lot dear Yigit :)
(you may now close the thread please)
Regards,
Sadegh
Hi,
Let us know if you have any other questions or issues :)
Best regards,
John Torvik