[SOLVED] Remove Box overlay from Image Show

GK User
Tue Nov 29, 2011 10:38 am
As the title suggest, Need to remove the Box overlay from the image and the text from the article.

When we remove the box the animation stops for the slides, can anyone advise.

Opened a ticket but was sent here.

Thanks in advance
User avatar
Fresh Boarder

GK User
Wed Nov 30, 2011 11:32 am
Did you try hiding it with a css?
Find File:/modules/mod_image_show_gk4/styles/gk_game_magazine/style.css
Find Line: 22
Which is below
Code: Select all
.gkIsWrapper-gk_game_magazine .gkIsTextItem { position: absolute; z-index: 30; background: #000 url('images/is_readon.png') no-repeat 92% center; float: left; min-height: 41px; padding: 20px 85px 20px 25px; cursor: pointer; -webkit-transition: background-image 0.35s linear; -moz-transition: background-image 0.35s linear; -o-transition: background-image 0.35s linear; transition: background-image 0.35s linear; }

add display:none to beginning so it looks like below.
Code: Select all
.gkIsWrapper-gk_game_magazine .gkIsTextItem { display:none; position: absolute; z-index: 30; background: #000 url('images/is_readon.png') no-repeat 92% center; float: left; min-height: 41px; padding: 20px 85px 20px 25px; cursor: pointer; -webkit-transition: background-image 0.35s linear; -moz-transition: background-image 0.35s linear; -o-transition: background-image 0.35s linear; transition: background-image 0.35s linear; }
User avatar
Platinum Boarder

GK User
Thu Dec 01, 2011 9:29 am
normanUK -> THANK YOU!

if only they had a smiley for Hats off!

I got to get me a css book and fall asleep reading it...

Thanks again
User avatar
Fresh Boarder

GK User
Thu Dec 01, 2011 10:43 am
No problem at all , nothing makes us happier then seeing happy users :D ( ps: in forums of course ), marking this topic as solved.

See you around...
User avatar
Platinum Boarder


cron