Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #1227370

    Hi team,
    The content slider seems to be adding an extra white space to the second sliders. See attached screen shots. Any idea why this may be happening?

    https://ibb.co/PzqRWTt
    https://ibb.co/StLcFc4
    Thanks

    #1227634

    Hey marsh1984,

    I can’t reproduce that on my end using Chrome, how can we reproduce the results in your screenshots?

    Best regards,
    Rikard

    #1229078

    Hi I’ll come back to you on this one, may have a solution

    #1229345

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic or if we can close it.

    Best regards,
    Rikard

    #1232823

    HI team I need to look into this again.
    1) How can I vertically align the left column text – home page content slider
    2) white space appears when you click through from first slider to subsequent sliders, between the nav arrows and columns. Also on mobile.
    https://ibb.co/ZmypkXH
    https://ibb.co/61wD46x

    Thanks

    #1233516

    Hi,

    There is a line break tag after the first column and it pushes the second column down to the second line. To fix that issue, make sure that there are no space between the first column’s closing tag.

    [/av_one_half]
    

    .. and the second columns opening tag.

    [av_one_half second ..]
    

    So instead of..

    [/av_one_half]
    [av_one_half second ..]
    

    .. it should be:

    [/av_one_half][av_one_half second ..]
    

    Best regards,
    Ismael

    #1233748

    Thanks just tried that and doesn’t seem to work…

    Also how do I vertically align the content in the left column?
    Many thanks

    #1234303

    Hi,

    Thank you for the update.

    Aside from getting rid of the space between the shortcodes, we added this css code to remove the 50px space above the first column.

    body .slide-entry-excerpt .column-top-margin {
    	margin-top: 0;
    }
    

    Best regards,
    Ismael

    #1234304

    Great thanks. How do I vertically centre the text in the left column so it sits in the middle of the column not the top?

    #1235093

    Hi,

    Also how do I vertically align the content in the left column?

    Previously, you wanted the left content to be aligned with the right. Which one do you actually prefer? You can use this css code if you want the content of the right column to be vertically centered.

    .slide-entry-excerpt {
    	display: flex;
    	flex-direction: row;
    	align-items: center;
    }
    

    Best regards,
    Ismael

    #1237725

    that all works, many thanks

    #1237849

    Hi marsh1984,

    Glad we could help :)

    If you need further assistance please let us know.
    Best regards,
    Victoria

    #1240580

    Hi team, one last request on this one. How do I set mobile break point for the columns in content slider?

    See here: https://ibb.co/6NDFBDS

    Thanks

    #1241594

    Hi,

    Thank you for the update.

    You can use this css code to adjust the width of the columns on mobile view.

    @media only screen and (max-width: 767px) {
        .slide-entry-excerpt .flex_column {
    	width: 100% !important;
        }
    
        .slide-entry-excerpt {
    	display: block;
        }
    }
    

    Best regards,
    Ismael

Viewing 14 posts - 1 through 14 (of 14 total)
  • You must be logged in to reply to this topic.