• Dear friends,
    on this site http://www.paperness.it I have managed to turn off the display of the site info string with the following additional CSS:

    .site-info {
        display: none;
    }

    but it leaves that unnecessary black bar. Can I get rid of it entirely ?

    I am also not able to change the background of the “Articoli meno recenti” bar (Less recent posts).

    Thank you for any help

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

    It looks like you’ve removed the black bar already.

    I am also not able to change the background of the “Articoli meno recenti” bar (Less recent posts).

    Here is the current CSS for that button:

    .posts-navigation {
        background-color: rgba(124, 196, 165, 0.5);
    }

    You can change the background color to a different one. Just paste the CSS into the Appearance > Customize > Additional CSS area of your site.

    Thread Starter rjalexander

    (@rjalexander)

    Thank you so much!
    A friend at work kind of introduced me to the brave world of using the Inspector so now I’m slightly more able to find things 🙂
    Having said that now I’m struggling to find how to change the colour of the READM MORE button 🙂
    Take care

    It’s nice to have friends who are willing to help. 🙂

    I’m struggling to find how to change the colour of the READM MORE button

    That one is definitely a bit buried. Here’s the existing code for the background and text color. Change them however you like.

    .link-more a {
        background-color: #e7ae01;
        color: #fff;
    }
    Thread Starter rjalexander

    (@rjalexander)

    Thank you so much David.
    I’d really love to see how you discovered it 🙂
    The Inspect in Safari gave me the whole post and I couldn’t find the way to pinpoint that !
    You should record your video to show how it’s done by a pro like you !!! 🙂
    Take care and ciao from Rome Italy

    PS They have just released a Dyad 2 theme, looks nice, but will not switch to it immediately since I see there is quite a lot of customisation to carry from Dyad.

    Thread Starter rjalexander

    (@rjalexander)

    Oooopsie ! 🙂

    While your code does indeed change the button, when you hover on the post the button reverts to the other original colour.

    Ideas ?

    Thanks a lot

    Here’s how I got to the color originally.

    For the hover, you can use this and adjust the colors:

    .posts .hentry:hover .link-more a {
        background-color: #f0b80e;
        color: #fff;
    }
    Thread Starter rjalexander

    (@rjalexander)

    Man you ROCK ! A LOT ! 🙂

    Thank you so much.

    Thanks! Glad I could help. 🙂

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Can I remove the site info bar in Dyad ?’ is closed to new replies.