Okay
  Public Ticket #533745
Vertically centralizing the title of the posts
Closed

Comments

  • Rafael started the conversation

    Hello,

    how can I vertically centralize the title of the posts on the masonry meta overlaid style blog? I want it to be in the same way as the quote posts. Thanks!

  •  8,990
    Tahir replied

    Hey,

    Add this into the Custom CSS box located in your Salient Options panel (Make Sure there are no red cross in the Box) :
    @media only screen and (min-width: 691px) {
        body .masonry.meta_overlaid .masonry-blog-item .article-content-wrap {
            bottom: 6em !important;
        }
    }
    
    
    @media only screen and (max-width: 690px) {
        body .masonry.meta_overlaid .masonry-blog-item .article-content-wrap {
            bottom: 1em !important;
        }
    }

    Thanks



    ThemeNectar Support Team 

  • Rafael replied

    That worked great, thanks!