CSS Layout trouble in Content Page [SOLVED! ... thanks to Nullig]
Re: CSS Layout trouble in Content Page
To mark it as solved, edit your first post on the topic and change the title.
Nullig
Nullig
Re: CSS Layout trouble in Content Page
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
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