Okay
  Public Ticket #778784
Theme fonts differ
Closed

Comments

  •  1
    Evan started the conversation

    Hello,

    On two separate pages I'm using my default "Paragraph" font, however, when I decrease the size of the screen, on one page the font remains alright, but on the other page, the font size decreases dramatically. Please see below:

    GOOD paragraph font responsiveness: www.bigmouthpromotions.com

    BAD paragraph font responsiveness: www.bigmouthpromotions.com/contact 

    Thanks in advance!

  •  8,994
    Tahir replied

    Hey ,

    You are using a H2 Tag . Please use a P instead: http://prntscr.com/b81pjs

    Best.


    ThemeNectar Support Team 

  • Evan replied

    Sorry I was not clear. If you go to www.bigmouthpromotions.com/contact and change the window size to make the responsive text change size, you will notice that the P tagged text on the page will change size differently than other P tagged text on the same page.

    Under "Support right at your finger tips" the text goes very small. Whereas underneath "Want to work for us?" the text size remains a good size.

    Please see attached. Thanks Tahir.

  •  8,994
    Tahir replied

    Hey Again

     Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    p > span {
        -webkit-font-smoothing: subpixel-antialiased;
    }
    
    

    Bes.t


    ThemeNectar Support Team 

  • Evan replied

    Hey Tahir... unfortunately the problem is still happening.

  •  8,994
    Tahir replied

    Hey Again,
    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :

    @media only screen and (max-width: 1300px) and (min-width: 990px) {
        .full-width-content .wpb_column .wpb_row .wpb_column, .full-width-content .wpb_column .wpb_row .wpb_column p {
            font-size: inherit !important;
            line-height: inherit !important;
        }
    }
    
    

    Bes.t


    ThemeNectar Support Team 

  • Evan replied

    Perfect! Thanks a lot.