css code to reduce space and othrs.

  • Unknown's avatar

    Hi.
    Could anyone help please?

    Which css code allows to reduce the space between my articles?

    Which one to change the color or my category title?

    And last one, the css code to activate the “justify text” format?
    The onglet in the dashboard editor does not work properly.

    Thank you

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hey there! :)

    Try this CSS code:

    .blog .hentry {
        padding-top: 40px;
    }
    
    .entry-header .entry-meta span.cat-links a, .entry-header .entry-meta span.cat-links {
        color: #c2185b;
    }
    
    .entry-summary p {
        text-align: justify;
    }

    Let me know if it works. :)

  • Unknown's avatar

    Hi Aicy,

    The first css, the padding: I am able to increase the padding but not reduce it. Is there another css code?

    The 2nd one, spot on! thank you.

    The 3rd one, it worked fine, I would prefer a css code that I could standardize on the entire website instead of only the summary box. This way, each time I draft and publish a post, the text justify is already in place.

    Any idea?
    Oib

    May I ask you. Which css code allw

  • Unknown's avatar

    Could you also give me the css code that allows for change the color of the “continue reading” at the bottom left of my post summaries.
    Thank you in advance.

  • Unknown's avatar

    Hi Oib!

    Add this one for spacing between articles, just adjust the value:

    .blog .hentry {
        margin-bottom: 30px;
    }

    For the text alignment, use this one to apply it to all p tags in general:

    p {
        text-align: justify;
    }

    And here is for changing the text color of “Continue Reading”:

    a.more-link {
        color: #c2185b;
    }

    Hope it helps! :)

  • The topic ‘css code to reduce space and othrs.’ is closed to new replies.