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....

CommentFileSizeAuthor
Pixture_reloaded_boarder.PNG420.47 KBpursuehappiness83

Comments

Jeff Burnz’s picture

1: 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.

pursuehappiness83’s picture

Thank 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.....