mod_banners

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Sun Aug 17, 2014 12:18 pm
Reply with quote
Report this post
Hi people,

We want to know how to remove the white line that appears where the module title should appear when this module is enable on the site, and also, how to make the module without any padding...

Thanks in advance...

Here is how it looks. We want to remove the white line, and have the banner align with the design, without any padding at all. Thanks again.
User avatar
Expert Boarder

teitbite
Mon Aug 18, 2014 8:57 am
Reply with quote
Report this post
Hi

Please tell me the exact url You have made this screen at. Have You tried module class suffix "clean" to remove paddings ?
User avatar
Moderator

GK User
Mon Aug 18, 2014 3:11 pm
Reply with quote
Report this post
Yes, we used the "clean" module class suffix but it didn't worked.

Here is a quick link to the site with the error: http://tinyurl.com/qeh3fla

Actually, is it "clear" or "clean". None of them worked.

Thanks in advanced.
User avatar
Expert Boarder

teitbite
Wed Aug 20, 2014 9:01 am
Reply with quote
Report this post
Hi

Border is comming from the banner extenton, so to remove it please add this code to override.css and make sure override is enabled in template settings:

Code: Select all
div.banneritem {
    border-top: medium none;
    padding: 0;
}


About the margins. Suffix will not work here since the spaces are included to module position and not module. Lets create a new suffix then. Add a module class suffix to module " nogaps" than add this code to css:

Code: Select all
.nogaps.box {
    margin: -30px -30px 0 !important;
    padding: 0 0 30px !important;
}
User avatar
Moderator

GK User
Wed Aug 20, 2014 1:48 pm
Reply with quote
Report this post
It worked...

thanks very much
User avatar
Expert Boarder


cron