Thank you again, that was great.
"display: inline;" did just the trick on my margin problems.
And for my header.. I just removed the DIVS wrapping my 2 images, and floated the images themselves instead. It seemed that the DIVS might've been adding space outside the image size, and caused them not to fit.
Everything is looking good in IE and FF right now.. though I still have a minor problem with my title area. IE renders it the way I want it to look.
Its a DIV wrapping my title area with the bottom border made blue.. to give it a horizontal rule beneath it.
It seems in firefox.. the contents jump above the div somehow. I don't get it.
http://www.geocentre.ca/admin/products.php
user: guest password: guest
Code:
<div class="hr">
<span class="h1" style="float: left;"><?php echo($title);?></span>
<span class="h2"><?php echo($desc);?></span>
</div>
Code:
.hr {
height:0;
border-bottom: solid #0066CC 1px;
text-align: right;
clear: both;
margin: 20px 40px;
}
.h1 {
font-size : 13px;
color : #0182AC;
}
.h2 {
font-size: 10px;
}
|