Hi there,
I'm just wondering how do I remove the slider headings when you hover over the slider thumbnails on the homepage? Also, when you hover over the main slider on the homepage the title appears. How can I remove this?
Thank you
Hi there,
I'm just wondering how do I remove the slider headings when you hover over the slider thumbnails on the homepage? Also, when you hover over the main slider on the homepage the title appears. How can I remove this?
Thank you
You can remove the titles above the thumbnails by changing your style.css file. search for:
#top .slideThumbTitle {
bottom:80px;
display:none;
left:-35px;
padding-bottom:12px;
position:absolute;
width:160px;
}
and change it to
#top .slideThumbTitle {
bottom:80px;
display:none !important;
left:-35px;
padding-bottom:12px;
position:absolute;
width:160px;
}
To remove the title tags you would need to edit the output of the image displaying function: open framework/helper_functions/kriesi_post_thumb.php and remove every instance of
title="'.get_the_title().'"
(line 132,150,157,167)
Thank you for your help
Glad that Kriesi could help you.
You must log in to post.