View Single Post
08-08-2012, 09:08 PM
#3
Gaz is offline Gaz
Gaz's Avatar
Status: Request a custom title
Join date: Apr 2007
Location: UK
Expertise: Code & Programming
Software: Coda, TextMate, Sublime 2
 
Posts: 2,097
iTrader: 26 / 100%
 

Gaz will become famous soon enough Gaz will become famous soon enough

Send a message via Skype™ to Gaz

  Old

I'd advise to refactor your code. Start with a sidebar and a content section (the whole right section). But assuming you won't refactor, this is what you can do as a quick fix:

HTML Code:
<style>
/* I have not combined these three IDs because you already have them defined separately. Add background-color: white; to each ID. */
#slideshow-wrap {
background-color: white;
}
#featgal-wrap {
background-color: white;
}
#primary {
background-color: white;
}

/* Change this to remove the 25px transparent gap between the footer and the white background of the content, just put padding: 0; */
#fwa-wrap {
padding: 25px 0 0;
}
</style>