clean and simple

It doesn't matter if you do all the error checking in the world, or if you have the most beautiful graphics, if your site or application design isn't usable, it's not going to do well. Get input and advice on usability and user interface issues here.

Moderator: General Moderators

Dm7
Forum Commoner
Posts: 67
Joined: Sat Oct 08, 2005 9:16 pm
Location: USA

Post 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. :)
RobertPaul
Forum Contributor
Posts: 122
Joined: Sun Sep 18, 2005 8:54 pm
Location: OCNY

Post 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}
Post Reply