Page 2 of 2

Re: CSS Layout trouble in Content Page

Posted: Sat Apr 14, 2007 11:39 pm
by Bob
OK... how do I tag this as [Solved] ?

Re: CSS Layout trouble in Content Page

Posted: Sat Apr 14, 2007 11:55 pm
by Nullig
To mark it as solved, edit your first post on the topic and change the title.

Nullig

Re: CSS Layout trouble in Content Page

Posted: Sun Apr 15, 2007 12:04 am
by Nullig
I wouldn't worry about the line you took out, unless it somehow breaks something else.

It's usually a good practice to use "classes" or "ids" to define specific styles for particular sections of a page. In this case you could define an id for that box, like box3, and use that specific id for the elements you want to style within it, like:

#box3 ul li {
  margin: 0;
  padding: 0;

that way it doesn't affect the:

#main ul li {
  margin: 0;
  padding: 0;

which could be used elsewhere.

Nullig