tried playing around with some stuff that I THOUGHT would work, but now i'm totally screwed up and don't know what I did. html is
Code:
<body>
<div id="header">
<div id="logo">
<img src="F:/new website/pics/logo_final.jpg" alt="University Neuromuscular Massage"/>
</div>
<div id="tagline">
<h2>Restoring Balance, One Massage At A Time</h2>
</div>
</div> <!-- end of header div -->
<div id="navigation">
<ul>
<li><A HREF="index2.html">Home</A></li>
<li><A HREF="services.html">Services</A></li>
<li><A HREF="pricing.html">Pricing</A></li>
<li><A HREF="contact.html">Contact Us</A></li>
<li><A HREF="therapists.html">Meet Our Therapists</A></li>
</ul>
</div> <!--end of navigation div -->
css looks like this:
Code:
#navigation {
float:right;
position:relative;
left:-50%;
text-align:left;
}
#navigation ul{
list-style:none;
position:relative;
left:50%;
}
#navigation li{
float:left;
position:relative;
}
/* ie needs position:relative here*/
#navigation a{
text-decoration:none;
margin:10px;
background:red;
float:left;
border:2px outset blue;
color:#fff;
padding:2px 5px;
text-align:center;
white-space:nowrap;
}
#navigation a:hover{ border:2px inset blue;color:red;background:#f2f2f2;}
#content{overflow:hidden}/* hide horizontal scrollbar*/
/*-----------------------
END OF NAVIGATION STUFF
*/-----------------------
/*------------------
logo and tag line position
*/------------------
#header {
width: 100%;
}
#logo, #tagline {
position: absolute;
}
#logo {
left: 50%;
}
#tagline {
text-align: center;
top: 75%;
}
I got the nav stuff off a link on here. This is not a live site, still only on my flash drive so you won't be able to see the pic. Not sure if it will help you at all, but thank you to all try to help get me out of the woods.
Bookmarks