• Resolved awanderingsole

    (@awanderingsole)


    So this is probably basic, but I’m not sure where it is in my stylesheet. I would like to change the standard color font for my blog posts from black to brown. For my last post I did it manually but I would like it to appear by default. Where would this be in my stylesheet? I would also like to darken the color of the subtitle so if you know where that is I would appreciate it!

    https://www.awanderingsole.com

Viewing 2 replies - 1 through 2 (of 2 total)
  • for the posts, try to add the color to div.post in style.css:

    div.post { padding: 15px 0px 10px 40px; color:#123456; }
    (use your color code)

    not sure what you mean with subtitle(?)
    if you mean the post meta data, such as //date//comments//categories:

    you could add these styles to style.css:

    div.post p.txt0 {color:#123456;}
    div.post p.txt0 a {color:#123456;}

    first line for unlinked texts – i.e. date;
    second line for linked texts – i.e. comments, cats

    Thread Starter awanderingsole

    (@awanderingsole)

    great. thanks!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Change font colors’ is closed to new replies.