Yes, you have to position the logo absolutely using CSS and then set the z-index to be above the slideshow.
The CSS styling would be similar to how the captions are overlaid on the slideshow using a custom slideshow template.
i dont know what or where to put this code..
what i have for code is this
.meteor-slides p {
background-image: url(‘images/Glow.png’);
bottom: 0;
left: 0;
margin: 0;
padding: 5px;
position: absolute;
width: 100%;
z-index: 10;
}
i dont know if that right, but i have it in
meteor-slides/css/meteor-slides.css right now and nothing is showing
You can put that code in your theme’s stylesheet or a custom stylesheet for the slideshow. That code will target a paragraph tag in your slideshow, do you have your logo in a paragraph tag? You probably want to add a class or ID to the logo and use that to style it. If you could post a link I could take a look.