Active
Project:
Pixture Reloaded
Version:
6.x-3.0
Component:
User interface
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Reporter:
Created:
7 Apr 2009 at 15:34 UTC
Updated:
8 Apr 2009 at 04:31 UTC
Hello all,
I am just start using drupal and pixture reloaded to build a simple site.
i want to remove the blank padding between content region and body boarding, i think it should implement by adjusting the style.css parameters, but after try every method and failed, i have to ask for your help. please see attached screenshot, i highligt the blank i want to remove by red pen. i want to remove the 1 and 2 blank, and put the pic just fit in the content region.
Thanks a lot....
| Comment | File | Size | Author |
|---|---|---|---|
| Pixture_reloaded_boarder.PNG | 420.47 KB | pursuehappiness83 |
Comments
Comment #1
Jeff Burnz commented1: comes from layout.css (line 113)
#main {
padding:0 15px 10px;
}
2: is not being caused by the theme, possibly module CSS form the module you are using.
Comment #2
pursuehappiness83 commentedThank you so much for you help,
After adjust the parameters value you mentioned:
From
#main {
position: relative;
padding: 0 15px 10px 15px;
}
TO
#main {
position: relative;
padding: 0 15px 10px 0px;
}
the blank 1 dismissed, but blank 2 still exsit, could you please told me which parameters control the blank 2????
Thanks a lot.....