How do I remove the titles in the feature slider. I just want the images. And then click on image to get to post. But because the slider also has the title of the blog post it obscures some of the image.
Also is it possible to sticky pages?
Thanks for your help!
these are the css rules to remove everything from the slider and just leave an image.
they go into your child-theme style.css file.
#slider .entry-title a {
display:none;
}
.flex-control-nav {
display:none;
}
.flex-direction-nav,.flex-pauseplay {
display:none;
}
Thank you–where exactly do I put it? Do I go to Editor and slider.php and past it there?
You go to editor and then to style.css and paste it there.
It worked! Thanks so much!