Can I turn off the timeline in Gavick Photoslide GK3

GK User
Tue Nov 29, 2011 10:20 pm
The thin line or timeline at the bottom of the photoslide which is a bar that grows does not match with my website. How do I turn it off?
User avatar
Fresh Boarder

GK User
Sat Mar 03, 2012 11:38 pm
Yeah, I want to turn this off too. I'm going to Firebug it and see at least if I can hide it, but if there is another way of turning off that progress bar, I'd like to know too.

If I work out a way to hide it, I'll come back and make another post.
User avatar
Expert Boarder

GK User
Sat Mar 03, 2012 11:49 pm
I've managed to hide it with a bit of CSS. However, this is using the Image Show GK4 module, so you might want to upgrade from the old Photoslide GK3 for this one, or hunt down the CSS property and do something similar as below.

Open the file modules/mod_image_show_gk4/styles/gk_financial_business/style.css in a text editor.

Change line 20 to add a display:none; CSS property

It currently looks like:

Code: Select all
.gkIsWrapper-gk_financial_business .gkIsTimeline { background:transparent url('images/is_timeline.png') repeat-x -12px bottom; height:6px; border-radius:12px; -moz-border-radius: 12px; -webkit-border-radius: 12px; margin: 0 18px; clear: both; position: relative; top: 12px; }


Change it to:

Code: Select all
.gkIsWrapper-gk_financial_business .gkIsTimeline { display:none; background:transparent url('images/is_timeline.png') repeat-x -12px bottom; height:6px; border-radius:12px; -moz-border-radius: 12px; -webkit-border-radius: 12px; margin: 0 18px; clear: both; position: relative; top: 12px; }


This isn't turning it off, it's just hiding it (so I'm guessing there will still be some JS firing off) but the result is the same.
User avatar
Expert Boarder


cron