Site logo

Archived topic

Dispatch theme : how do I set up the height of header and image grid

3 replies · Started by Francesco on December 5, 2019

Viewing posts 1–4 of 4

Hi, I would like to have the header and the image grid with a smaller height on mobiles (up to 600 or 720 px width I guess). I can't find the correct css property , can you please help me ?
thanks

Hi there,

try this CSS:

@media (max-width: 768px) {
    /* Height of first post */
    .wpsp-grid article:first-child .wp-show-posts-image a img {
        max-height: 300px;
    }
    /* Height of other posts */
    .wpsp-grid article:not(:first-child) .wp-show-posts-image a img {
        max-height: 200px;
    }
}

Thank you, have a great day

You're welcome

This archived topic is closed to new replies.