
Originally Posted by
Andy6867
I worked through a lot of the replies on here but thought it would be easier to post my question. Installed the Slider and works great... just one question, at the bottom is a black title bar ... how do i remove this?
www.roadfoxbicycles.com/Store
Andy
The easiest way is to do it through CSS. Open your includes/templates/theme724/css/index_home.css and edit line 61.
Find
Code:
.theme-default .nivo-caption {
font-family: Helvetica, Arial, sans-serif;
}
and replace with
Code:
.theme-default .nivo-caption {
font-family: Helvetica, Arial, sans-serif;
display:none !important;
}
Make sure you reload the page or clear browser cache to see the changes. Also, keep in mind this will work for default theme only - if you switch to any other theme (light, dark or bar), you'll need to do the same edit for .nivo-caption for other themes.
Regards,
Leonard