Type of Font when using bullets?

Discussion in 'Infoway WordPress Theme' started by robert l, Sep 9, 2013.

  1. robert l

    robert l Member

    Joined:
    May 23, 2013
    Messages:
    68
    Likes Received:
    0
    Location:
    Princeton, NJ
    I changed the overall font on the template to Verdana per the CSS Editor. However, when I use the bullets f0rmatting when laying out a page, the text in the bullets default to the Arno template font. Therefore, the Verdana font is used on the text before and after the bullets, and the font in the bullets is Arno.

    How can I have bullets fonts also be verdana?

    Pic attached to reference...

    Thank you!

    Robert
     

    Attached Files:

  2. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    ul li {
    font-family: symbol;
    }
    In place of "symbol" you can put your font.
    This will solve your issue.
     
  3. robert l

    robert l Member

    Joined:
    May 23, 2013
    Messages:
    68
    Likes Received:
    0
    Location:
    Princeton, NJ
    Thank you, Piyush. I am having the same challenge with the Widgets in the footer. I made the first widget a text widget, and the font is defaulting to Arno. How can I make the footer widget text font be verdana instead? Appreciate your help.
     
  4. Piyush

    Piyush Support Staff

    Joined:
    Dec 8, 2012
    Messages:
    4,745
    Likes Received:
    107
    Hello,

    Paste the code given below in Custom CSS
    Appearance > Theme Option > Styling Option > Custom CSS

    Code:
    .footer div.textwidget {
    font-family: symbol;
    }
    .footer ul li {
    font-family: symbol;
    }
    In place of "symbol" you can put your font.
    This will solve your issue.
     

Share This Page