CSS Layout trouble in Content Page [SOLVED! ... thanks to Nullig]

For discussion and questions related to CMS Specific templates and stylesheets (CSS), and themes. or layout issues. This is not a place for generic "I don't know CSS issues"
Bob

Re: CSS Layout trouble in Content Page

Post by Bob »

OK... how do I tag this as [Solved] ?
User avatar
Nullig
Power Poster
Power Poster
Posts: 2380
Joined: Fri Feb 02, 2007 4:31 pm

Re: CSS Layout trouble in Content Page

Post by Nullig »

To mark it as solved, edit your first post on the topic and change the title.

Nullig
User avatar
Nullig
Power Poster
Power Poster
Posts: 2380
Joined: Fri Feb 02, 2007 4:31 pm

Re: CSS Layout trouble in Content Page

Post 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
Locked

Return to “Layout and Design (CSS & HTML)”