This is going to duplicate some of the other items found on this project page.
Let me start by saying that I really love this theme. It's perfect for my current project. Here's my issues:
1. There are three graphics missing, if the author would be kind enought to make them available that would be great.
a. bg-thread.gif
b. menu-expanded.gif
c. menu-collapsed.gif
2. This isn't a bug, it's just something that I'd like to do and can't seem to find the right code to tweak. I'd like the primary links to be centered horizontally in their bar. Is there a way to make that happen?
I'm sure more will follow but that would be a big help right now.
Thanks,
David
http://www.FloridaPets.org
Comments
Comment #1
colorado commentedTo center the primary links, in styles.css replace:
#primary {
line-height: 30px;
}
with:
#primary {
line-height: 30px;
text-align:center;
}
and also replace:
#primary a {
font-weight:bold;
display:block;
float:left;
padding:0px 14px 0px 14px;
margin: 0px 1px 0px 0px;
font-size: 95%;
}
with this:
#primary a {
font-weight:bold;
display:block;
/* float:left; */
display:inline;
padding:0px 14px 0px 14px;
margin: 0px 1px 0px 0px;
font-size: 95%;
}
After you've centered it with the above, look into /css/gray.css - there are also some #primary link properties that you can tweak to get it looking how you want.
Comment #2
tknospdr commentedThanks, that indeed centered the links, but it lost the ability to display the graphic as it's hover state as well as the graphic dividers. I left the site with those changes so you could see what they did incase you might have anymore pointers. I didn't do anything to the gray.css as it didn't look like there was anything in there I wanted to change.
My test site is at http://www.technospider.com/~jitkorg
Thanks for the help so far,
David
http://www.FloridaPets.org