Photoslide Next Previous Buttons Disable

Ecommerce design Joomla template to start your online business with VirtueMart and additional eshop features.
GK User
Tue Sep 20, 2011 10:22 pm
How do I disable the NEXT / PREVIOUS Button on the left and the right of the PHOTOSLIDE MODULE?

I only want a IMAGE ROTATOR -- yet when that is selected in the MODULE STYLE SETTINGS-- the images do not load.

WHAT AM I MISSING??
User avatar
Fresh Boarder

GK User
Thu Nov 03, 2011 12:32 am
I also have the same question. I don't like the prev and next button.
User avatar
Fresh Boarder

GK User
Thu Nov 03, 2011 12:42 am
Find File: "/templates/gk_yourshop/css/style1.css "
Find Line: 92
Which is code below
Code: Select all
.gk_is_prev, .gk_is_next {
    background: url("../images/style1/is_bg.png") repeat-x scroll 0 center #7EB619;
    border: 1px solid #577B15;
}

Add display: none to hide div so it looks as below
Code: Select all
.gk_is_prev, .gk_is_next {
    background: url("../images/style1/is_bg.png") repeat-x scroll 0 center #7EB619;
    border: 1px solid #577B15;
    display: none;
}


or Goto Joomla Admin > Extensions > Template Manager > GK Yourshop > Dev > CSS Override enable it.
Find File: "/templates/gk_yourshop/css/style1.css "
Add below code into it
Code: Select all
/* Hide Arrows in Slideshow */
.gk_is_prev, .gk_is_next {
    display: none;
}
User avatar
Platinum Boarder


cron