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
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.
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.
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.