Page 2 of 2

Posted: Thu Oct 20, 2005 9:32 pm
by Dm7
mmm when I go to that Variable tutorial in php section... the text goes out of the box... :oops: You might want to fix that. :)

Posted: Thu Oct 20, 2005 10:05 pm
by RobertPaul
Charles256 wrote:www.esitemaintenance.com bring on the hate...
My screen res is 1152x864, which causes the gradient in the #header to repeat. Try adding this to your CSS:

Code: Select all

#header {background-position:left;background-repeat:repeat-y;background-color:#C4D3FE;}
Also, the green-on-blue #leftnav links are hard to read. I suggest something a little more neutral. Perhaps the same color as the background of #body.

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}