Hi, Meteor Slides is really great!
I put the prev/next button outside of the featured image and it displays well. That's what I did:
.meteor-nav .prev a {
left: -32px;
}
.meteor-nav .next a {
right: -32px;
}
However, when i tried to point to the arrow button by getting close to it, it just gone missing! When I moved away from it, it displayed again! Your advice is much appreciated.
http://wordpress.org/extend/plugins/meteor-slides/
I can take a look if you want to post a link.
The prev/next buttons display when you hover over the slideshow, but you have moved the buttons outside the slideshow. So when you move the cursor out of the slideshow, they are hidden. If the buttons are outside of the slideshow they have to be displayed all the time like this:
.meteor-slides ul.meteor-nav {
display: block;
height: 100%;
list-style: none outside none;
margin: 0 !important;
padding: 0;
}
ok. I have no choice but to make it visible. Thanks Jleuze!