Remove homepage slideshow links and button
-
I am looking to remove the links and buttons from each of the homepage slideshow images. (Simply use the slideshow only to display photos). Can this be done through the custom CSS option?
Thanks!
Michelle
The blog I need help with is: (visible only to logged in users)
-
Yes, with some additional CSS code you’ll definitely be able to remove those elements from your slideshow.
-
-
Once you have the Custom Design add-on, you can add this CSS code. Note that this will only apply to the slider on the home page.
.home #featured-content .flex-control-nav { display:none; /* This will remove the links at the bottom left */ } .home .featured .hentry { display:none; /* This will remove the link at the bottom right */ } -
Worked great. Thank you. Is there a CSS code I could use to remove the link from the actual images as well? The image slides are still hyperlinked to their respective pages.
-
You can’t remove the link itself, but you can make it look less like a link by making sure that the mouse pointer doesn’t change into a pointy-finger cursor but just stays the same, normal arrow when the user hovers over the slider:
.home .featured a:hover { cursor:default; }Again, you can’t remove the link itself with CSS so when someone does click on it, it’ll still go somewhere, but you just kind of “hide” the fact that it’s a link.
-
Thank you. I was able to remove the link with the following code:
.slides {
pointer-events: none;
cursor: none;
} -
-
- The topic ‘Remove homepage slideshow links and button’ is closed to new replies.