• msheffield

    (@msheffield)


    How do I change the font and color and size of some of the content on my hompage??Thanks. I am a beginner so please give me a good example!!

Viewing 2 replies - 1 through 2 (of 2 total)
  • Tim

    (@thegreentimtam)

    Generally font colour is embedded in the “style.css” file in your theme. If you want to change it, you can do so by editing this page. Go to Appearance>Editor and you will be taken to the editor.

    To change the colour of all the pages, you will need to edit the CSS for all the content. Where this is located, and how it is implemented, is different for every theme, so I can’t tell you how to change it without knowing the specifics of your case.

    Tim

    (@thegreentimtam)

    To change the colour of just a section of text, you can wrap the content in div tags, giving the div a unique ID, and then changing the colour of that div within your CSS file.

    eg.
    <div id="home-page-color">This is the text I want to change.</div>
    and then add the following to your CSS

    #home-page-color {
    color:red;
    }

    I think that will work…

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Changing font and color on Hompage theme’ is closed to new replies.