Log In · Register

 
navbar misbehaving...
Maccabee
post Jan 31 2009, 02:30 PM
Post #1


Senior Member
*******

Group: Official Designer
Posts: 5,880
Joined: Nov 2007
Member No: 593,382



Im making a site for someone and the nav is currently a image map but i dont like using image maps.
So im trying to make it from just css and an image but it aint working!
Heres what its supposed to look like:


And here is the code im trying to change it too.
CODE
<style type="text/css">
#nav{
width:800px;
height:100px;
background-image:url(http://www.amelia.wefuze.com/designimages/blank_bar.png);
background-repeat:no-repeat;
padding-top:29px;
word-spacing:30px;
text-align:center;
}

a.nav:link, a.nav:active, a.nav:visited{
font-family:sans-serif;
color:#6F6F6F;
text-decoration:none;
font-size:24px;
padding-bottom:10px;


}

a.nav:hover{
color:#5e5e5e;
}

.divider{
padding-bottom:-10px;

}
</style>

<div id="nav">
<a class="nav" href="index.php">home</a> <img class="divider" src="http://www.amelia.wefuze.com/designimages/divider.gif">
<a class="nav" href="literary/">literary</a> <img class="divider" src="http://www.amelia.wefuze.com/designimages/divider.gif">
<a class="nav" href="art/">art</a> <img class="divider" src="http://www.amelia.wefuze.com/designimages/divider.gif">
<a class="nav" href="performance/">performance</a> <img class="divider"

src="http://www.amelia.wefuze.com/designimages/divider.gif">
<a class="nav" href="contact/">contact</a>
</div>


You can put the code in here to see it:
html editor

So you see whats happening?! The dividers are images but when i put them in the links moved down. So im trying to get the dividers to stay where they are but move up the links up to the center!?!
 
 
Start new topic
Replies
synatribe
post Jan 31 2009, 03:28 PM
Post #2


AIDS at RAVES.
******

Group: Official Designer
Posts: 2,386
Joined: Dec 2007
Member No: 598,878



your using padding instead of margins
here try this code
CODE
<style type="text/css">
#nav{
width:800px;
height:100px;
background-image:url(http://www.amelia.wefuze.com/designimages/blank_bar.png);
background-repeat:no-repeat;
padding-top:29px;
word-spacing:30px;
text-align:center;
}

a.nav:link, a.nav:active, a.nav:visited{
font-family:sans-serif;
color:#6F6F6F;
text-decoration:none;
font-size:24px;
margin-top:-10px;


}

a.nav:hover{
color:#5e5e5e;
}

.divider{
margin-bottom:-15px;

}
</style>

<div id="nav">
<a class="nav" href="index.php">home</a> <img class="divider" src="http://www.amelia.wefuze.com/designimages/divider.gif">
<a class="nav" href="literary/">literary</a> <img class="divider" src="http://www.amelia.wefuze.com/designimages/divider.gif">
<a class="nav" href="art/">art</a> <img class="divider" src="http://www.amelia.wefuze.com/designimages/divider.gif">
<a class="nav" href="performance/">performance</a> <img class="divider"

src="http://www.amelia.wefuze.com/designimages/divider.gif">
<a class="nav" href="contact/">contact</a>
</div>
 

Posts in this topic


Closed TopicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members: