CSS nav bar -- Change colors in the drop down

Need Help!

I created my CSS nav bar but how do I change my font colors in the drop down menu to black? I don't see any code to change font from blue to black.

Thank you for your help in advance.

Here is the code: :(


<style type="text/css">

#dropmenudiv{
position:absolute;
border:1px solid black;
font:normal 12px Verdana;
line-height:18px;
z-index:100;
}

#dropmenudiv a{
width: 100%;
display: block;
text-indent: 3px;
}

#dropmenudiv a:hover{ /*hover background color*/
background-color: #33CC99;
}

.bgc { background-color: #33CC99; color: #000000}
</style>
<script type="text/javascript">


//Contents for menu 1
var menu1=new Array()
menu1[0]='<a href=http://www.webdeveloper.com/forum/archive/index.php/"http://www.moneymagnetinc.com">Mission</a>'



//Contents for menu 2,
var menu2=new Array()
menu2[0]='<a href=http://www.webdeveloper.com/forum/archive/index.php/"/service.html">Service</a>'
menu2[1]='<a href=http://www.webdeveloper.com/forum/archive/index.php/"/Money_And_Credit.html">Money and Credit</a>'
menu2[2]='<a href=http://www.webdeveloper.com/forum/archive/index.php/"/Refused.html">Denined Credit</a>'
menu2[3]='<a href=http://www.webdeveloper.com/forum/archive/index.php/"/Creidt_Analsysis_Form.html">Credit Form</a>'

var menuwidth='165px' //default menu width
var menubgcolor='#33CC99' //menu bgcolor
var disappeardelay=250 //menu disappear speed onMouseout (in miliseconds)
var hidemenu_onclick="yes" //hide menu when user clicks within menu?

/////Stop

var ie4=document.all
var ns6=document.getElementById&&!document.all

if (ie4||ns6)
document.write('<div id="dropmenudiv" style="visibility:hidden;width:'+menuwidth+';background-color:'+menubgcolor+'" onMouseover="clearhidemenu()" onMouseout="dynamichide(event)"></div>')

function getposOffset(what, offsettype){
var totaloffset=(offsettype=="left")? what.offsetLeft : what.offsetTop;
var parentEl=what.offsetParent;
while (parentEl!=null){
totaloffset=(offsettype=="left")? totaloffset+parentEl.offsetLeft : totaloffset+parentEl.offsetTop;
parentEl=parentEl.offsetParent;
}
return totaloffset;
}


function showhide(obj, e, visible, hidden, menuwidth){
if (ie4||ns6)
dropmenuobj.style.left=dropmenuobj.style.top=-500
if (menuwidth!=""){
dropmenuobj.widthobj=dropmenuobj.style
dropmenuobj.widthobj.width=menuwidth
}
if (e.type=="click" && obj.visibility==hidden || e.type=="mouseover")
obj.visibility=visible
else if (e.type=="click")
obj.visibility=hidden
}

function iecompattest(){
return (document.compatMode && document.compatMode!="BackCompat")? document.documentElement : document.body
}

function clearbrowseredge(obj, whichedge){
var edgeoffset=0
if (whichedge=="rightedge"){
var windowedge=ie4 && !window.opera? iecompattest().scrollLeft+iecompattest().clientWidth-15 : window.pageXOffset+window.innerWidth-15
dropmenuobj.contentmeasure=dropmenuobj.offsetWidth
if (windowedge-dropmenuobj.x < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure-obj.offsetWidth
}
else{
var windowedge=ie4 && !window.opera? iecompattest().scrollTop+iecompattest().clientHeight-15 : window.pageYOffset+window.innerHeight-18
dropmenuobj.contentmeasure=dropmenuobj.offsetHeight
if (windowedge-dropmenuobj.y < dropmenuobj.contentmeasure)
edgeoffset=dropmenuobj.contentmeasure+obj.offsetHeight
}
return edgeoffset
}

function populatemenu(what){
if (ie4||ns6)
dropmenuobj.innerHTML=what.join("")
}


function dropdownmenu(obj, e, menucontents, menuwidth){
if (window.event) event.cancelBubble=true
else if (e.stopPropagation) e.stopPropagation()
clearhidemenu()
dropmenuobj=document.getElementById? document.getElementById("dropmenudiv") : dropmenudiv
populatemenu(menucontents)

if (ie4||ns6){
showhide(dropmenuobj.style, e, "visible", "hidden", menuwidth)
dropmenuobj.x=getposOffset(obj, "left")
dropmenuobj.y=getposOffset(obj, "top")
dropmenuobj.style.left=dropmenuobj.x-clearbrowseredge(obj, "rightedge")+"px"
dropmenuobj.style.top=dropmenuobj.y-clearbrowseredge(obj, "bottomedge")+obj.offsetHeight+"px"
}

return clickreturnvalue()
}

function clickreturnvalue(){
if (ie4||ns6) return false
else return true
}

function contains_ns6(a, b) {
while (b.parentNode)
if ((b = b.parentNode) == a)
return true;
return false;
}

function dynamichide(e){
if (ie4&&!dropmenuobj.contains(e.toElement))
delayhidemenu()
else if (ns6&&e.currentTarget!= e.relatedTarget&& !contains_ns6(e.currentTarget, e.relatedTarget))
delayhidemenu()
}

function hidemenu(e){
if (typeof dropmenuobj!="undefined"){
if (ie4||ns6)
dropmenuobj.style.visibility="hidden"
}
}

function delayhidemenu(){
if (ie4||ns6)
delayhide=setTimeout("hidemenu()",disappeardelay)
}

function clearhidemenu(){
if (typeof delayhide!="undefined")
clearTimeout(delayhide)
}

if (hidemenu_onclick=="yes")
document.onclick=hidemenu

</script>
</head>

<body>
<div align="right" class="bgc"><a href=http://www.webdeveloper.com/forum/archive/index.php/"default.htm" onClick="return clickreturnvalue()" onMouseover="dropdownmenu(this, event, menu1,'150px')" onMouseout="delayhidemenu()"><font color="#000000"><b>Mission
</b></font></a><b> | <a href=http://www.webdeveloper.com/forum/archive/index.php/"default2.htm" onClick="return dropdownmenu(this, event, menu2,'200px')" onMouseout="delayhidemenu()" class="bgc">Service </a>
| <a href=http://www.webdeveloper.com/forum/archive/index.php/"/product.html" class="bgc">Products</a> | <font color="#000000"><a href="/aboutus.html"><b><span class="bgc">
About Us |</span></b></a></b></div>OOPS SORRY DIDNT MEAN TO DO THATWould any body know the answer to this question? lol Thanks for your help!CSS nav bar? lol There's more JavaScript than CSS there.

I suggest you read these articles.
<!-- m --><a class="postlink" href="http://apptools.com/rants/jsmenu.php">http://apptools.com/rants/jsmenu.php</a><!-- m -->
<!-- m --><a class="postlink" href="http://apptools.com/rants/menus.php">http://apptools.com/rants/menus.php</a><!-- m -->
I have a much higher opinion of the Suckerfish Menu System than this author, however, he does explain the pitfalls of DHTML menus well.

Take a look at these articles.
<!-- m --><a class="postlink" href="http://www.alistapart.com/articles/dropdowns/">http://www.alistapart.com/articles/dropdowns/</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.alistapart.com/articles/horizdropdowns/">http://www.alistapart.com/articles/horizdropdowns/</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.alistapart.com/articles/taminglists/">http://www.alistapart.com/articles/taminglists/</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.htmldog.com/articles/suckerfish/dropdowns/">http://www.htmldog.com/articles/suckerfish/dropdowns/</a><!-- m -->
<!-- m --><a class="postlink" href="http://www.alistapart.com/articles/hybrid/">http://www.alistapart.com/articles/hybrid/</a><!-- m -->
<!-- m --><a class="postlink" href="http://css.maxdesign.com.au/">http://css.maxdesign.com.au/</a><!-- m -->

To answer your question:
#dropmenudiv a{
width: 100%;
display: block;
text-indent: 3px;
color: #000;
}I will read thats.. lol
 
Back
Top