Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #760545

    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

    #761122

    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

    #766908

    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

    #767466

    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

    #767899

    Thanks a lot dear Yigit :)
    (you may now close the thread please)

    Regards,
    Sadegh

    #767903

    Hi,

    Let us know if you have any other questions or issues :)

    Best regards,
    John Torvik

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘H2 style’ is closed to new replies.