clean and simple
Moderator: General Moderators
-
RobertPaul
- Forum Contributor
- Posts: 122
- Joined: Sun Sep 18, 2005 8:54 pm
- Location: OCNY
My screen res is 1152x864, which causes the gradient in the #header to repeat. Try adding this to your CSS:Charles256 wrote:www.esitemaintenance.com bring on the hate...
Code: Select all
#header {background-position:left;background-repeat:repeat-y;background-color:#C4D3FE;}Text also breaks out of the #body area when there's a larger amount of content. The problem here is that IE treats the "height" property as "min-height" ... whereas other browsers treat "height" as a fixed height, and require "min-height" to fit text. You need to either use conditional comments or just do:
Code: Select all
* html #body {height: 450px}
#body {min-height: 450px}