I need help with something similar, I'd like to put a full width header image as the background for the header and have the minicart and account links float in front of it. I'd also like to put a little text below those links. When I put a full width image in now as the logo.gif, it pushes those links below it, similar to the post above. How do I modify the code below to use the logo as a background?
Code:
<!-- <div id="login">
<span id="userName">
<asp:Literal ID="ltrUserName" runat="server" Text='<%$ Tokens:UserName %>' /></span><span
id="loginText"><a href='<asp:Literal ID="Literal1" runat="server" Text="<%$ Tokens:SignInOut_Link %>" />'><asp:Literal
ID="ltrSignInOutText" runat="server" Text='<%$ Tokens:SignInOut_Text %>' /></a></span>
</div> -->
<div id="header">
<div style="float: left">
<a runat="server" id="logo" class="topLogo" href="~/default.aspx" title="RNTsupply.com" />
</div>
<div style="float: right">
<a runat="server" class="account" href="~/account.aspx">Your Account</a></div>
<!-- <div style="float: right">
<a runat="server" class="contact" href='<%$ Tokens:TopicLink, Contact %>'>Contact Us</a></div> -->
<% if (ShowMiniCart == false)
{ %>
<%-- If minicart is not enabled, use the default link --%>
<div style="float: right">
<asp:Panel ID="pnlShoppingCart" runat="server">
<a runat="server" class="cart" href="~/shoppingcart.aspx">Shopping Cart (<aspdnsf:Token ID="tknNumCartItems" runat="server" Type="NUM_CART_ITEMS" />)</a></asp:Panel>
</div>
<% } %>
</div>