Firebug is always a big help with these kinds of tweaks. Are you editing the style.css
file? The other stylesheet, ie.css
, only runs in IE.
Usually, it is just because there is more than one rule affecting the same element and your change doesn’t take priority. You can add a higher level element to your rule to give it higher priority.
All the elements you want to tweak are in the header, so try adding the header id, #header
to the rules like the ones below.
All three elements are in a div with the ID of “logo”. You need to make that div bigger so it all fits, like this:
#header #logo {
float:left;
height: auto;
width:886px;
}
Now tweak the “desc” div to fit next to it:
#header #desc {
float:left;
margin:10px 0 5px 10px;
width:637px;
}
Finally, you might want to shrink the title a bit so that it fits better:
#header #desc .title {
color:#FF0000;
display:block;
font-size:45px;
font-weight:normal;
line-height:55px;
text-shadow:2px 2px 0 #CCCCCC;
}