Forum Moderators: open
I'm using the following CSS:
<style type="css/text">
body {color:#000; background-color : #FEB;}
h1, h3 { text-align : center; }
h2 { font-style : italic; }
p { text-align : justify; }
dt {
font-weight : bold;
}
dd {
position : relative;
left : -20px;
display : list-item;
}
#main {
float: left;
width : 67%;
margin : 10% 0% 0% 2%;
border : 3px double gray;
padding : 20px 10px 20px 10px;
color : #000;
background-color : #DEF;
}
#sidebar {
float : right;
width : 28%;
}
#sidebar div {
border : 3px double gray;
width : auto;
padding : 5px 10px 5px 10px;
margin : 10px 0px 10px 25px;
color : #000;
background-color : #DFE;
}
.sign {
float : right;
text-align : right;
font-style : italic;
}
.floatleft {
float : left;
}
</style>