bulleted & numbered lists

  • Unknown's avatar

    Whenever I add text in a list (bulleted or numbered) it comes out in a different font type and size than the body of the post. This happens when I bring in formatted text or use the list buttons in the Visual editor.

    After looking at a few forum discussions, I may need to fix the style sheet?

    specifically: http://thefield.asla.org/2012/11/07/tulip-paradise-the-history-of-the-tulip-and-emirgan-park/

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    You have this in your custom CSS on the Appearance → Custom Design → CSS page:

    .content p {
    	font-family: Georgia, "Times New Roman", Times, serif;
    	font-size: 12px;
    	line-height: 18px;
    	padding: 11px 0 0;
    	margin: 0;
    	color: #525252;
    }

    That means you have customized the fonts just for paragraphs (or any HTML using the “p” tag).

    To also make lists in the content area use those same fonts, you can add a similar rule like this just for lists:

    .content ul,
    .content ol {
    	font-family: Georgia, "Times New Roman", Times, serif;
    	font-size: 12px;
    	line-height: 18px;
    	color: #525252;
    }
  • The topic ‘bulleted & numbered lists’ is closed to new replies.