Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #859183

    Hello,

    I’d like to give a little breathing room between the sub heading “Adventures in Wine and Spirits” and the photo thumbnails in my blog page.

    https://mountainviewvineyard.com/blog/

    Also, is there a way to force the photos to be all the same size so it looks more even?

    Thanks!

    #859796

    John Ezra
    Member

    Hi there,

    Thanks for writing in! You can add this under Custom > CSS in the Customizer or in your child theme’s style.css file.

    .blog .x-container.max.width.offset {
        margin-top: 30px;
    }
    
    .entry-featured {
        height: 235px;
        overflow:hidden;
    }

    Hope this helps – thanks!

    #862747

    Thank you! That helped with the spacing! Can you help with the photo size?

    #862806

    Upon further review, this was not the solution. While it did exactly what I wanted for the main blog page, it severely cuts my featured images at the top of blog posts. Is there a solution that will only adjust the header space on the main blog page without impacting individual blog posts?

    #863410

    Friech
    Moderator

    Hi There,

    Please update the second line of code to this:

    .blog .entry-featured {
    	min-height: 235px;
    	max-height: 235px;
        	overflow: hidden;
    }

    Hope it helps, Cheers!