Centered Theme troubles

griggle / 2010-07-06 19:09:11   

Alright so heres the spill. I Downloaded the centered theme and I have been modifying things. My main problem seems simple but I cant figure it out. I cant seem to change the color of my drop down links, and when I do make a background color for the drop down links I get a white box on my href spot inside my logo.

In addition to that I cant seem to get Menu to stay on one full line once I start opening each link. Any help would be appreciated. THX

griggle / 2010-07-06 19:09:48   

oh my site is jnreed.com

blameme / 2010-07-07 08:11:32   

you need to edt these parts in your .css:

  1. #menu ul li {  /* property of the projects/exhibitions titles */
  2. font-family : Bebas;
  3. text-align : left;
  4. font-size : 1em;
  5. width : 150px;
  6. line-height : 150%;
  7. margin : 0 0 0 0;
  8. color: white;
  9. }
  10. #menu ul a:link {
  11. padding : 0 0 0 0;
  12. text-decoration : none;
  13. color : black;
  14. }
  15. #menu ul a:active {
  16. padding : 0 0 0 0;
  17. text-decoration : none;
  18. color : black;
  19. ¬†¬†¬†¬†font-size: 22pt;
  20. }
  21. #menu ul a:visited {
  22. padding : 0 0 0 0;
  23. text-decoration : none;
  24. color : #d3d3d3;
  25. }
  26. #menu ul a:hover {
  27. padding : 0 0 0 0;
  28. color : #999999;
  29. }
arsondpi / 2010-07-07 08:36:40   

try setting css rules for

  1. #menu ul li a:link {...}
  2. #menu ul li a:hover {...}
  3. #menu ul li a:visited {...}
  4. #menu ul li a:active {...}

also delete width:150px; from #menu ul li in you stylesheet.

Edit:
Damn.... late!!!

This thread has been closed, thank you.