Hi all,
Here's a sneak preveiw of my new site layout (Pure CSS/DIV, ASP.NET)
http://www.inoxia.co.uk/dotnet
Slight problem that I just can't figure out... could be a rendering bug in IE?
Under the title, under where the control panel / shipping / privacy links are, there's 2 blue lines separated by a gradient. If you're looking at it in Firefox, you'll see more links (Home, About Us, Contact, etc) and a breadcrumb on top of that. If you're looking in IE, you won't.
Any ideas? If you refresh the page you can sometimes see the text as it's being rendered, which leads me to beleive the text is being drawn first, then the background... but I'm not totally sure.
Here's the code:
HTML Code:
<div id="ContentLinks">
<span class="left" id="spnLinks2" style="margin-left: 10px">
<a href="index.asp">Inoxia Home</a> |
<a href="content/info/about.aspx">About Us</a> |
<a href="content/info/contact.aspx">Contact Us</a> |
<a href="content/info/faq.aspx"><acronym title="Frequently Asked Questions">FAQ</acronym></a> |
<a href="content/about/news.asp">Latest News</a>
</span>
<span class="right" id="spnBreadcrumb" style="margin-right: 10px">
Inoxia Home
</span>
<div class="spacer"></div>
</div>
And the CSS:
Code:
div#ContentLinks {
background-image: url(../images/links_bg.jpg);
border-top: 1px solid #0000FF;
border-bottom: 1px solid #0000FF;
position: relative;
top: -1px;
font-weight: bold;
color: #333333;
}
.left {
float: left;
text-align: left;
}
.right {
float: right;
text-align: right;
}
div.spacer {
clear: both;
}
The left, right and spacer CSS Styles are borrowed from Real World Style's 7-10 Split ( http://realworldstyle.com/split.html)
__________________
Minaki Serinde MCP
"Wow, Linux is nearly on-par with Windows ME!"
Please login or register to view this content. Registration is FREE | Please login or register to view this content. Registration is FREE
|