|
I tried a few things but get bad results.
I tried closing the <div="logo"> after the </h1> and putting this in:
<div style="clear: both;"> </div>
Then putting another <div="logo"> to do the <h2>
but that didnt work.
Then I tried completely taking out the logo div and that produced bad results also. Im not sure what to do. What do you suggest?
The css for logo is:
/* Logo */
#logo {
float: left;
height: 82px;
margin: 0px auto;
padding: 10px 0px 0px;
}
#logo h1 {
float: left;
margin: 0;
padding: 0px 0px 0px 40px;
letter-spacing: -1px;
text-transform: none;
font: bold 34px "Trebuchet MS", Arial, Helvetica, sans-serif;
}
#logo h1 a {
color: #FFFFFF;
}
#logo h2 {
float: left;
padding: 0px 0px 0px 40px;
text-transform: none;
font-size: 14px;
color: #E4EEB3;
}
#logo a {
text-decoration: none;
color: #E4EEB3;
|