Changing the font size on my wordpress theme

7 replies
  • WEB DESIGN
  • |
How do I change the font size on my wordpress theme on both the pages and posts? I have went in and made some changes, but nothing seems to happen. I appreciate any help. Here is the site: www.mymichiganautoinsurance.com


Thanks,

Jayson
#changing #font #size #theme #wordpress
  • Profile picture of the author Susan Stones
    Look for the theme style sheet (extension css) probably in a directory called css.

    You should see something like this:


    body{
    font-family: Tahoma, Verdana, Helvetica, sans-serif;
    font-size: 110%;
    }

    Changing the percentage may be the easiest if you want the same change across the site. If there is no font-size you could add a percentage here. Test it and see if it works!


    You may find that the fonts are specified throughout the style sheet, you can change these if you want to change only some of the sizes.

    Hopefully this will work, if not come back with more information & questions

    Sue
    {{ DiscussionBoard.errors[1386326].message }}
  • Profile picture of the author DarkLour
    yes and a easyier way to figure out what to change is vew the page source of your site.. find the text you want to change check the "style" or "ID" and then find that code or # in your css file and start changing
    Signature

    Best Regards,
    James
    Culinary Website Design : Cooking Blog :

    {{ DiscussionBoard.errors[1400144].message }}
  • Profile picture of the author james300
    that's one problem im having too
    {{ DiscussionBoard.errors[1404432].message }}
  • Profile picture of the author Dr Dan
    Originally Posted by Jayson L View Post

    How do I change the font size on my wordpress theme on both the pages and posts? I have went in and made some changes, but nothing seems to happen. I appreciate any help. Here is the site: www.mymichiganautoinsurance.com


    Thanks,

    Jayson
    Its weird that more people dont talk about this topic. But after lots of searching I found a killer easy to use plugin to allow you to change the font family, size, etc with just a few clicks. Its called the TinyMCE advanced plugin. You can get it here: WordPress › TinyMCE Advanced WordPress Plugins
    Signature
    {{ DiscussionBoard.errors[1412241].message }}
  • Profile picture of the author windaaja
    Using dreamweaver make easy your jobs
    {{ DiscussionBoard.errors[1418084].message }}
  • Profile picture of the author atikbabu
    Open style.css.Then change font in all "font-family" which font you want to keep.
    {{ DiscussionBoard.errors[6455960].message }}
  • Profile picture of the author seopress
    In style.css, the basic font is controlled by the line:
    body, select, input, textarea {font: 110% Arial, Verdana, Sans-Serif;}

    The font size for most of the content is controlled by the line:
    .entry {
    padding-top:5px;
    text-align:justify;
    font-size:9pt;
    }

    Changing these stylesheet entries will change all content unless it is over-ridden in an individual post or page by some inline styling, as would be done by use of the TinyMCE advanced plugin mentioned above.
    {{ DiscussionBoard.errors[6456474].message }}

Trending Topics