Okay
  Public Ticket #1009393
Font weight
Closed

Comments

  •  2
    itigo started the conversation

    Why does the text in a text box look different compared to the text as part of a fancy unordered list although both have a font weight of 300?

    I have added the following Custom CSS Code:

    /* change font weight of fancy unordered list from 400 to 300 */
    .nectar-fancy-ul li{
        font-weight:300 !important;
        
    }
    

    With Custom CSS Code the difference is even more.

    Is there a way to have the same text formatting for both cases? Many thanks in advance for your support.

  •  8,996
    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) :

    ul,li {
        -webkit-font-smoothing: subpixel-antialiased;
    }

    Make sure to rebuild your minification cache .

    Thanks


    ThemeNectar Support Team 

  •  2
    itigo replied

    Tahir, thanks again. It works perfectly.