• Resolved raskdetreve

    (@raskdetreve)


    Hello,

    I’m using free GeneratePress.

    I modified some CSS to get a nice blog display ((but I’m not a coder).

    But now, the boxes are not surrounding the images on the bottom side.

    Here is a screenshot : (as I’m using a staging blog, I can’t provide a direct link)

    https://ibb.co/f2fR0Cm

    Do you know how can I change that?

    Thank you very much ??

    • This topic was modified 3 years, 2 months ago by raskdetreve.

    The page I need help with: [log in to see the link]

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

    i cannot advise without see the site, if you want to share a link when your site is available then we can advise.

    Thread Starter raskdetreve

    (@raskdetreve)

    Oh, shit, I’m looking how to display a live version of the blog but I don’t think it’s possible with the “wp-staging” plugin I’m using… it seems you must be logged to the admin panel to see it…

    • This reply was modified 3 years, 2 months ago by raskdetreve.
    Thread Starter raskdetreve

    (@raskdetreve)

    Maybe this can help : it’s the code I have in additionnal CSS to display the main page with the small images :

    @media (min-width: 769px) {
    .post-image img {
    max-width: 300px;
    }
    }
    @media (min-width: 769px) {
    .post-image {
    float: left;
    margin-right: 1.5em;
    }
    }

    • This reply was modified 3 years, 2 months ago by raskdetreve.

    Try changing your CSS to:

    @media (min-width: 769px) {
        .post-image {
            float: left;
            margin-right: 1.5em;
        }
        .post-image img {
            max-width: 300px;
        }
        footer.entry-meta {
            clear: both;
        }
    }
    Thread Starter raskdetreve

    (@raskdetreve)

    It works, thank you very much !

    • This reply was modified 3 years, 2 months ago by raskdetreve.

    Glad to be of help

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Change the CSS of the boxes’ is closed to new replies.