padding for image show module

GK User
Sun Nov 27, 2011 4:49 pm
Hi,

I have an GK4 image show module at top1 position. the problem is, that this module is displayed without any bottom-padding. other modules at the topX positions do have a bottom-padding (same padding-width as top-, left and right-padding).

How can I get this bottom-padding for the image show module?

regards
m. blanke
User avatar
Fresh Boarder

GK User
Wed Nov 30, 2011 11:22 am
Do you have a link to your website?
User avatar
Platinum Boarder

GK User
Wed Nov 30, 2011 12:36 pm
normanUK wrote:Do you have a link to your website?


http://www.ursulaschule.de/jupgrade
User avatar
Fresh Boarder

GK User
Wed Nov 30, 2011 12:44 pm
Use following css code:
Code: Select all
.gkIsWrapper-gk_memovie { padding: 5px; }


You can add this in template features in advanced css section
or
in templates/template_name/css/override.css file ( make sure to enable CSS override feature in template settings )
or
Directly editing file: /modules/mod_image_show_gk4/styles/gk_memovie/style.css
Line: 11
From
Code: Select all
.gkIsWrapper-gk_memovie { position:relative; width:auto; float:left; overflow:hidden; }

change to
Code: Select all
.gkIsWrapper-gk_memovie { position:relative; width:auto; float:left; padding: 5px; overflow:hidden; }


See you around...
User avatar
Platinum Boarder


cron