Hi there,
I have site http://thegymfactory.com.au which has a slider on the home page.
On the slider there are three navigation buttons (image attached).
I would like to remove all of these navigation buttons, and instead of clicking the + button to go to the link, you would now need to click on the slider image.
Please PM me for login details.
Kate
Sachindra Narayan answers:
try disabling the buttons using css..:
.controls .more, .controls .close, .controls .prev, .controls .next{
display:none!important;
}
dantnan answers:
Hello Kate,
You only need to add display:none!important; code to style.css
You can do it by editing from FTP or wordpress admin panel.
In admin panel you need to go Appereance > Editor. After that you open the style.css and in style.css just go through the lines below and add the bolded letters that I wrote and that should worked for you perfectly.
.controls.slider_navigation
{
<strong>display:none!important;</strong>
float: right;
margin-top: 60px;
position: static !important;
padding: 0 !important;
}