• Closed
  • Markus Vogt
    Spectator
    November 14, 2016 at 8:25 pm #31161

    http://www.radtouren-checker.de/blog/

    If you look at my blog you can see the typography of the date, categories, comment etc.

    This typography, for me it’s too bright. It is possible to change it? I did not find it in the settings. Maybe there’s an CSS-command… Thanks!

    Denzel Chia
    Moderator
    Posts: 2656
    November 15, 2016 at 9:18 am #31163

    Hi,

    Please use the following in Theme Options -> Custom CSS to change the color.

    .entry-meta.entry-header a {
    color: #000000 !important;
    }
    .entry-categories a {
    color: #000000 !important;
    }
    .comment-count a {
    color: #000000 !important;
    }

    Use this colorpicker to get your required color hex code.
    http://colorpicker.com

    Thank you

    Markus Vogt
    Spectator
    Posts: 44
    November 15, 2016 at 8:36 pm #31189

    Ah, yes. That’s it.

    And at last: The Typography with “older entries”, “newer entries”, next blogposts. Is it also changeable?

    Denzel Chia
    Moderator
    Posts: 2656
    November 16, 2016 at 9:44 am #31194

    Hi,

    It’s only possible to use a typography that’s loaded. For example, you are using open sans for your menu.
    So we can use it for next and previous navigation.

    .nav-next a, .nav-previous a {
    font-family: Open Sans !important;
    }

    Thank you.

    Markus Vogt
    Spectator
    Posts: 44
    November 16, 2016 at 5:06 pm #31198

    Oh, sorry, you got me wrong.

    I didn’t mean the typography as itself but the color of the typography. Now everything in my blog of this light gray typograhy I can change without “older entries”, “newer entries” etc.

    http://www.radtouren-checker.de/blog/- Here you can see it.

    (In german “older entries/newer entries” means “Ältere Einträge/Neuere Einträge”)

    I just want to change the color of this.

    Denzel Chia
    Moderator
    Posts: 2656
    November 17, 2016 at 8:58 am #31202

    Hi,

    Please use the following in Theme Options -> Custom CSS to change the color.

    .nav-next a, .nav-previous a {
    color:#000000 !important;
    }

    Thank you