My CSS file is currently displaying correctly in FF12, but the layout is different in Safari and Chrome.
If images are not loading, you can view a live demo at
This is how it should appear and does in FF:
However, this is what happens in Safari and Chrome:
Here is the relevant CSS and HTML:
<style type="text/css">
#topbar p.infotext {
float: left;
padding-left: 20px;
padding-right: 20px;
margin-left: 15px;
color: #D8DFEA;
}
#topbar a.name, #topbar a.home {
font-weight: bold;
margin-top: 4px;
line-height: 32px;
font-size: 13px;
text-align: right;
color: #D8DFEA;
padding-left: 12px;
float: right;
text-decoration: none;
padding-right: 0px;
}
.divider {
margin-top: 7px;
line-height: 19px;
border-right: 1px solid #5CCD3E;
float: right;
}
</style>
<html>
<div id="topbar">
<a class="home" href="#">Home <span class="divider"> </span></a>
<a class="name" href="#"><?php echo $first_name . " " . $last_name . " ";?>
<span class="divider"> </span>
</a>
</div>
</html>