• Resolved ruthy19

    (@ruthy19)


    How do I change post titles font colour in goran theme?
    My site is being constructed at 70.40.220.101

Viewing 4 replies - 1 through 4 (of 4 total)
  • Hi there,

    You can add this to the Appearance > Customize > Additional CSS area of your site:

    /* Change Post Title Color */
    .entry-title a {
        color: #000;
    }

    From there, you can set any color you want in place of the #000 color value.

    Thread Starter ruthy19

    (@ruthy19)

    Thanks that has worked brilliantly.

    Is it possible to do it for widget titles as well?

    You bet. Here’s CSS for the widget titles:

    /* Change Widget Title Color */
    
    .widget-title,
    .widgettitle {
        color: #000;
    }
    Thread Starter ruthy19

    (@ruthy19)

    Have realised a mistake in my code and have now corrected all widget colour titles thanks x

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Changing post title font colour in goran’ is closed to new replies.