Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Josh Leuze

    (@jleuze)

    Hi, this is a theme conflict, your theme is styling the list items for the nav, sticking in some extra content with these rules:

    .art-postcontent ul>li:before,
    .art-post ul>li:before,
    .art-textblock ul>li:before {
    	content: url('images/postbullets.png');
    	margin-right: 6px;
    	bottom: 2px;
    	position: relative;
    	display: inline-block;
    	vertical-align: middle;
    	font-size: 0;
    	line-height: 0;
    }

    Try adding this to your theme’s stylesheet:

    .art-postcontent ul.meteor-nav>li:before,
    .art-post ul.meteor-nav>li:before,
    .art-textblock ul.meteor-nav>li:before {
    	content: none;
    	margin-right: 0;
    	bottom: 0;
    	position: relative;
    	display: inline;
    	vertical-align: middle;
    	font-size: 0;
    	line-height: 0;
    }
    Thread Starter jandreasen

    (@jandreasen)

    Hi Josh,

    YES! That worked.

    Thanks for your help.

    Hi,

    I have the exact same problem. Please help! Slider is on this page: https://foundationcsuq.ca/nouvelles/

    Plugin Author Josh Leuze

    (@jleuze)

    @cold Iron Chef You can fix this theme conflict by adding this to your theme’s stylesheet:

    ul.meteor-nav li {
    margin: 0 !important;
    }

    I am have the same problem with the plugin here. https://www.burlingtonschoolofenglish.com

    none of the theme style sheet fixes posted above stopped it, frustrating me now

    I have tried adding

    .meteor-slides.navhover ul.meteor-nav {
    display: inline !important;
    }

    to the theme style sheet with no luck

Viewing 6 replies - 1 through 6 (of 6 total)
  • The topic ‘Slideshow moves down on hover’ is closed to new replies.