If this is your first visit, be sure to
check out the FAQ by clicking the
link above. You may have to register
before you can post: click the register link above to proceed. To start viewing messages,
select the forum that you want to visit from the selection below.
I am trying to figure out how to remove the navigation buttons from below the home page slider display. Everything that I have seen and tried does not work - has anybody found a sure fire way to disable them?
You need to modify the nivo.css file. It is in templates/common/css, so you'll need to make a copy into your own template/css folder.
Then change this code:
Code:
.theme-default .nivo-controlNav {
text-align: center;
padding: 20px 0;
}
to:
Code:
.theme-default .nivo-controlNav {
display:none;
text-align: center;
padding: 20px 0;
}
You could also over-ride it in your own CSS file, which would be another way to achieve this. Either way you are going to need a passing understanding of how CSS works.
Comment