Re: Removing a column
Posted: Thu Dec 13, 2007 11:05 am
You don't need another unique stylesheet you can add onto the styles you already have example:
you could also write this
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.
Code: Select all
.announce {
clear: left;
float: left;
width: 130px;
margin: 0 0 10px 0;
padding: 0;
font-size: 0.8em;
}
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.