Sure, you can do that. If you don’t add links to the slides they won’t be clickable.
To position the buttons above the slideshow, put the slideshow template tag and buttons inside a container to wrap around the whole thing like this:
<div id="meteorslides-wrapper">
<?php if ( function_exists( 'meteor_slideshow' ) ) { meteor_slideshow(); } ?>
<a class="meteorslides-button meteorslides-button-1" href="#">Button 1</a>
<a class="meteorslides-button meteorslides-button-2" href="#">Button 2</a>
</div><!-- #meteorslides-wrapper -->
To style that, you’ll need to position the buttons absolutely with a high z-index to layer them above the slideshow, and set the position of the #meteor-slides-wrapper
container to relative so that the buttons stay within that container:
#meteor-slides-wrapper {
height: (Same as slideshow);
position: relative;
width: (Same as slideshow);
}
.meteorslides-button {
bottom: 10px;
position: absolute;
z-index: 9999;
}
.meteorslides-button-1 {
right: 100px;
}
.meteorslides-button-2 {
right: 50px;
}
You can change the bottom and right values of the buttons to position them exactly where you want them.