• Ive been looking through posts but dont fully understand how to change the color of the grey font to a black as it quite hard to see for me anyway. Is there an easy way to do this. Ive managed to do the other texts in centre but not side bar ones

    Thanks

Viewing 5 replies - 1 through 5 (of 5 total)
  • Hey there,

    I took a quick look at the theme, I guess you mean the colour like on the date or in the excerpt, the colour code is #aaa for the excerpt and there appears to be 12 instances of this in the theme.

    The excerpt for example:

    .entry.excerpt {
    color: #aaa;
    }

    The date is #bbb and there are 5 instances of this one:

    .post-meta {
    color: #bbb;
    }

    This could be changed to any hex code you wish. If need a reference for codes:

    https://www.color-hex.com/

    Hope this gives you some direction on where to start. ??

    Noticed your gravatar is a signpost for Worksop, small world, I’m not far from there. ??

    Take care.

    Thread Starter gaz-blog

    (@gaz-blog)

    Hi the text of the side bars wont change. The text inside is grey and hard to see. I changed the text in the centre of the site on the blogs but the side bars wont at all from the gray. ive tried all sorts.

    Thread Starter gaz-blog

    (@gaz-blog)

    Hey again,

    The sidebar text:

    .widget {
    color: #000;
    }

    For the links:

    .widget a { color: #000; }

    When hovering on links:

    .widget a:hover {
    color: #000;
    }

    Just change the hex code to a colour you desire, #000 is black. I provided a link for hex codes above ??

    Hope this helps.

    Thread Starter gaz-blog

    (@gaz-blog)

    Great,, that sorted it thank you so much ??

Viewing 5 replies - 1 through 5 (of 5 total)
  • The topic ‘changing font colour of side bars’ is closed to new replies.