Page 1 of 1

SlideShow Help

Posted: Sun Oct 16, 2011 11:56 am
by mwben
I can't find anywhere in the form about removing the buttons/dots on the slide show module on opencart v1.5.1.3 any one got any idea.

Re: SlideShow Help

Posted: Sun Feb 19, 2012 3:01 am
by djeeke
I know this is an old posting and I am sorry I did not notice this earlier...
But this might come in handy for people looking how to get rid of these dots...

Removing/renaming the bullets.png image is not a good way to do this as the navigation boxes stay there...

A quick and dirty solution is to simply move theses navigation boxes out of sight...
Edit the slideshow.css and locate .nivo-controlNav
in here replace

Code: Select all

	right: 10px;
	bottom: 5px;
with

Code: Select all

margin-left: 9999px;
This allows to get the job done without messing about in the code where these boxes are generated...
:crazy:

Re: SlideShow Help

Posted: Sun Feb 19, 2012 11:41 pm
by djeeke
instead of moving away from the page one might obviously choose to just hide the navigation boxes...

Code: Select all

display: none;
will do just that
:crazy: