to much space between modules in homepage

September 2015 Joomla Template
GK User
Wed Oct 21, 2015 10:15 am
hi, i have a problem with the template layout, there is to much space between modules, specially in homepage it become so obviouse, how can i reduce this pace?
in the picture u can see, between mainbody_top and maybody there is to much space.
a.jpg

I did a try, by css override i changhed this value:
#gkMainbody .box {
padding: 80px;
}
in
#gkMainbody .box {
padding: 10px;
}

It works, the space between modules is ok now but the body goes in left

How can i reduce this space?
tnx
User avatar
Gold Boarder

GK User
Wed Oct 21, 2015 10:57 am
Could you please post an url to your site?
User avatar
Moderator

GK User
Wed Oct 21, 2015 11:01 am
User avatar
Gold Boarder

GK User
Fri Oct 23, 2015 10:24 am
??
User avatar
Gold Boarder

GK User
Sat Oct 24, 2015 10:49 am
Please do not bump (reply to your own messages) the thread - it always makes you wait longer.

Using this code:
Code: Select all
#gkMainbody .box {
padding: 10px;
}

recuses all paddings (top, right, bottom and left),
you can try:
Code: Select all
#gkMainbody .box {
padding: 10px 80px;
}

which sets top and bottom margin to 10px and left and right paddings to 80px.
Or you can be even more "clever" and reduce only top padding:
Code: Select all
#gkMainbody .box {
padding-top: 10px;
}
User avatar
Moderator

GK User
Mon Oct 26, 2015 8:08 am
Tnx so much!..
User avatar
Gold Boarder

GK User
Mon Oct 26, 2015 1:44 pm
If you have any additional questions regarding this topic, please let me know.
User avatar
Moderator


cron