Ask your WordPress questions! Pay money and get answers fast! Comodo Trusted Site Seal
Official PayPal Seal

Need to get rid of navigation button on my theme slider WordPress

  • SOLVED

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

Answers (4)

2013-03-07

Kiet Luong answers:

would like to help you

2013-03-07

Sachindra Narayan answers:

try disabling the buttons using css..:

.controls .more, .controls .close, .controls .prev, .controls .next{
display:none!important;
}

2013-03-07

Arnav Joy answers:

Hi Kate ,

Would be happy to help you for this also.

2013-03-07

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;
}