[Solved] Removing a column

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"
Locked
dsims

Re: Removing a column

Post by dsims »

You don't need another unique stylesheet you can add onto the styles you already have example:

Code: Select all

.announce {
clear: left;
float: left;
width: 130px;
margin: 0 0 10px 0;
padding: 0;
font-size: 0.8em;
}
you could also write this

Code: Select all

.announce, .announce1 {
width: 130px;
padding: 0;
font-size: 0.8em;
}
.announce{
clear: left;
float: left;
margin: 0 0 10px 0;
}
.announce1{
clear:right;
float: right;
margin: 0 0 10px 0;
}

I am sure you can do the same with your content like #contentbig, #content small or what ever you feel comfortable with.
If you want a good book pick up O'reilly's cascading style sheets I got a used one for 8 bucks and worth every nickle.
dsims

Re: [Solved] Removing a column

Post by dsims »

glad I could help.
Locked

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