1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32
|
.contributors{
content: "";
clear: both;
display: table;
width: 500px;
padding-bottom: 50px;
}
.contributors .image {
width: 100px;
float: left;
}
.contributors .image img{
width: 100px;
}
.contributors .text {
width: 75%; /* three boxes (use 25% for four, and 50% for two, etc) */
padding-left: 10px; /* if you want space between the images */
float:right;
}
#titlearea img{
height: 150px;
}
.headertitle {
font-size: xx-large;
font-weight: bolder;
}
|