Okay
  Public Ticket #3059609
Post Grid Parallax
Closed

Comments

  • Archies started the conversation

    Hey Tahir,

    I have been trying to set the content alignment to the center, I have checked all the boxes saying Center Content yet it is to the left. Also, When I hover over the images I want it to be full screen, can I alter it using any CSS? Any help would be appreciated. Thanks in advance.

  •  8,462
    Tahir replied

    Hey Again,

    Add this into the Custom CSS box in your Salient Theme Options panel (We write all Custom CSS in the Live Browser to ensure accuracy. If you cannot see any changes, make sure there is no red cross in the Custom CSS Box as any syntax error would cause all CSS under that line of code to not show up on the Frontend):

    .nectar-post-grid-wrap[data-style=mouse_follow_image] .nectar-post-grid-item .content .post-heading {
        text-align: center;
        max-width: 100% !important;
    }

    Thanks


    ThemeNectar Support Team 

  • Archies replied

    Hey Tahir, 

    Thanks for the alignment thing, but when you hover over any post it also displays a white post title to the left. Also, I want to make the images full screen, can I do that?

  •  277
    Noah replied

    Hi there,

    You can remove the white post tile with this CSS:

    .nectar-post-grid-wrap[data-style=mouse_follow_image] .nectar-post-grid .nectar-post-grid-item .content .post-heading a:before{
        display:none;
    }
    

    As for the image full screen, that not something that is easily possible with CSS as it dynamically set by the theme. You would have to do you own customizations for that.

    Hope you understand.