• Firstly, let me say thanks for the really great plugin, it works very well!

    I have a WP blog using the StudioPress Enterprise theme and I hae installed the Meteor Slides plugin into the blog.

    I have read your post http://www.jleuze.com/plugins/meteor-slides/customizing-the-stylesheet/ and tried to follow the instructions, however I cannot seem to get the auto hide to stop working. I am using tghe slideshow navigation option, but the image just moves down and then cannot be viewed.

    Unfortunately I cannot give you the link to the blog as it is currently offline only and is not available on the internet yet, sorry.

    I am using the meteor-slideshoe.php and meteor-slides.css files.

    YOu help is much appreciated.

    http://ww.wp.xz.cn/extend/plugins/meteor-slides/

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

    (@jleuze)

    It’s hard to say without seeing it, but it sounds like there is a conflict with your theme. Try switching the prev/next nav from block to inline. If you want the nav showing all the time do it like this:

    .meteor-slides ul.meteor-nav {
    	display: inline;
    	list-style: none;
    	height: 100%;
    	margin: 0 !important;
    	padding: 0;
    }
    
    .meteor-slides.navhover ul.meteor-nav {
    	display: inline;
    }

    Or if you still want them only revealed on hover, do it like this:

    .meteor-slides ul.meteor-nav {
    	display: none;
    	list-style: none;
    	height: 100%;
    	margin: 0 !important;
    	padding: 0;
    }
    
    .meteor-slides.navhover ul.meteor-nav {
    	display: inline;
    }
Viewing 1 replies (of 1 total)

The topic ‘[Plugin: Meteor Slides] Remove Auto Hide’ is closed to new replies.