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.