Site: http://controlaltdelete.tv
Version: Drupal 5.1
I've been trying to edit the way the primary links look at the heading of the page. What I'm trying to do is get rid of the spacing between the primary links. I'm using the following code for my primary links:
print theme('links', $primary_links, array('class' => 'links', 'id' => 'navlist'))
CSS for the primary links:
#links{
text-align: center;
position: absolute;
margin: 0;
right: 20px;
top: 72px;
padding:4px 10px 4px 10px;
}
#links a{
background-color: #1A984F;
color: #fff;
text-align: center;
padding:4px 10px 4px 10px;
}
#links a:hover{
text-decoration: none;
text-align: center;
background-color: #FD0000;
padding:4px 10px 4px 10px;
}
Any ideas?
Thanks,
Greg
Comments
Try this
- Corey