Denzel Chia
    Moderator
    Posts: 2656
    06.11.2015 at 08:21 #21840

    Hi,

    Please use the following in your Theme Options -> Custom CSS

    .entry-meta.entry-header, .entry-meta.entry-header a {
    color: #000 !important;
    }

    Thanks!

    Joey Mansveld
    Spectator
    Posts: 32
    07.11.2015 at 17:49 #21866

    It doesn’t work, nothing changed

    Denzel Chia
    Moderator
    Posts: 2656
    08.11.2015 at 08:04 #21873

    Hi,

    Look at this portion of the code that you have entered in your custom css.

    @media only screen
    and (min-device-width : 768px)
    and (max-device-width : 1024px)
    and (orientation : portrait)
    {
    #wrapper .dd-container .dd-selected-text span:before {
    position: relative;
    top:0px;
    padding: 0px;
    margin: 0px;
    content: "Menu";
    }

    .entry-meta.entry-header, .entry-meta.entry-header a {
    color: #000;
    }

    It’s wrong. Your media query has opening bracket, but does not have closing bracket. You also did not use the !important rule that I provided in my reply.

    It should be as follows.

    @media only screen
    and (min-device-width : 768px)
    and (max-device-width : 1024px)
    and (orientation : portrait){
    #wrapper .dd-container .dd-selected-text span:before {
    position: relative;
    top:0px;
    padding: 0px;
    margin: 0px;
    content: "Menu";
    }
    }
    .entry-meta.entry-header, .entry-meta.entry-header a {
    color: #000 !important;
    }

    There could be other errors in your custom css codes. Please check them.

    Thanks!

    Joey Mansveld
    Spectator
    Posts: 32
    08.11.2015 at 17:04 #21879

    Thank you so much! You’re an amazing moderator 🙂

    Joey Mansveld
    Spectator
    Posts: 32
    08.11.2015 at 17:05 #21880

    But the same question below the post. How can i change that color? Sorry for the many questions

    Denzel Chia
    Moderator
    Posts: 2656
    09.11.2015 at 07:19 #21889

    Hi,

    Please use the following.

    .nav-previous a, .nav-next a, .nav-previous .icon-arrow-left::before, .nav-next .icon-arrow-right::before {
    color: #000 !important;
    }
    .entry-meta.entry-footer.row a {
    color: #000 !important;
    }

    The top set of codes is for the prev and next posts.
    The bottom set of codes is for your categories and sharing icons.

    Thanks!

    Joey Mansveld
    Spectator
    Posts: 32
    09.11.2015 at 10:42 #21896

    .entry-meta.entry-footer.row a {
    color: #000 !important;
    }

    It works but after i delete the word ‘row’ above