• Resolved Ankush

    (@gankush12)


    Hi,

    I was wondering is there a way to set specific font styles to the entire blog; including the titles-Times, Post Content- Verdana, and Sidebar Titles- Arial.

    I am not talking about <font> tag which changes the fonts of the text within the tag. I am looking for a way to edit the themes in the editor to set them according to my specific tastes.

    https://www.readmyreads.com/

    I use ColdBlue theme by Webrevolutionary, it does not have any font named tag in the theme editor pages, I have even checked single-post php, stylesheet css, and page template in the editors but they don’t seem to have <font> tags.

    Can someone help me?

Viewing 2 replies - 1 through 2 (of 2 total)
  • Good Guy

    (@mytaxsitecouk)

    Yes you can change the fonts as you wish by using CSS. To give you a simple example, if you want your entire blog/site to have one particular type of font family then you could use CSS like this:

    body {
    	font-family: Arial, Helvetica, sans-serif;
    }

    Now if you want title to be some other font then first you need to identify what is the Id or Class of the tag and then use CSS to target that particular tag accordingly.

    Hope this gives you a start but you can search for CSS tutorials online.

    Good luck.

    Good Guy

    (@mytaxsitecouk)

    This covers all three of them:

    body {
    	font-family: Arial, Helvetica, sans-serif;
    	font-size: 62.5%;
    	color: red;
    }
Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Blog – font style, size and color change’ is closed to new replies.