• Resolved dimizu

    (@dimizu)


    In your version 4.0.4:

    For a slider with the Fixed Content property, the image container is not displayed correctly.

    You have forgotten to set this CSS property:

    
    	min-height: var(--gutenslider-min-height);
    

    Workaround in my style.css that works for me:

    .slick-slider, .wp-block-eedee-block-gutenslider {
    	min-height: var(--gutenslider-min-height);
    }

    But it would be better to fix the bug in the plugin.

    • This topic was modified 4 years, 5 months ago by dimizu.
Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter dimizu

    (@dimizu)

    Sorry, the above workaround causes problems with sliders that use the setting Changing Content. This one is better:

    .wp-block-eedee-block-gutenslider.content-fixed {
    	min-height: var(--gutenslider-min-height);
    }
    Plugin Author eedee

    (@eedee)

    Hey @dimizu

    Thanks for your valuable input. We will include the fix in the Next Version.

    Plugin Author eedee

    (@eedee)

    Hey @dimizu,

    we checked out the issue and it shows that it works on our side. Where does your problem appear? Frontend or Backend? can you also please check if it only occurs with sliders that were created pre 4.0.4 by creating a new slider and see if it also does not work there?

    The css rule is not set on the block, as it would create fixed height sliders also when the media selection form is shown, which is not what we want.

    Plugin Author eedee

    (@eedee)

    marked as resolved after no feedback

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘container height with fixed content’ is closed to new replies.