css drop down menu displays as a bullet list in IE8 -


i created dropdown css menu , working in firefox not in ie8. need work in browsers, can help?. don't have url yet, creating site in old version of frontpage.

here css script:

#cssmenu{ height:37px; display:block; padding:0; margin:20px auto;  border:1px   solid;     border-radius:5px; }  #cssmenu > ul {list-style:inside none; padding:0; margin:0;}  #cssmenu > ul > li {list-style:inside none; padding:0; margin:0; float:left;  display:block; position:relative;}  #cssmenu > ul > li > a{ outline:none; display:block; position:relative; padding:12px  20px; font:bold 13px/100% arial, helvetica, sans-serif; text-align:center; text- decoration:none; text-shadow:1px 1px 0 rgba(0,0,0, 0.4); }  #cssmenu > ul > li:first-child > a{border-radius:5px 0 0 5px;}  #cssmenu > ul > li > a:after{ content:''; position:absolute; border-right:1px solid;  top:-1px; bottom:-1px; right:-2px; z-index:99; }  #cssmenu ul li.has-sub:hover > a:after{top:0; bottom:0;}  #cssmenu > ul > li.has-sub > a:before{ content:''; position:absolute; top:18px;  right:6px; border:5px solid transparent; border-top:5px solid #fff; }  #cssmenu > ul > li.has-sub:hover > a:before{top:19px;}  #cssmenu ul li.has-sub:hover > a{ background:#3f3f3f; border-color:#3f3f3f; padding- bottom:13px; padding-top:13px; top:-1px; z-index:999; }  #cssmenu ul li.has-sub:hover > ul, #cssmenu ul li.has-sub:hover > div{display:block;}  #cssmenu ul li.has-sub > a:hover{background:#3f3f3f; border-color:#3f3f3f;}  #cssmenu ul li > ul, #cssmenu ul li > div{ display:none; width:auto;  position:absolute; top:38px; padding:10px 0; background:#3f3f3f; border-radius:0 0 5px  5px; z-index:999; }  #cssmenu ul li > ul{width:200px;}  #cssmenu ul li > ul li{display:block; list-style:inside none; padding:0; margin:0;  position:relative;}  #cssmenu ul li > ul li a{ outline:none; display:block; position:relative; margin:0;  padding:8px 20px; font:10pt arial, helvetica, sans-serif; color:#fff; text- decoration:none; text-shadow:1px 1px 0 rgba(0,0,0, 0.5); }     #cssmenu, #cssmenu > ul > li > ul > li a:hover{ background:#97c20a; background:-moz-  linear-gradient(top,  #97c20a 0%, #8da408 100%); background:-webkit-gradient(linear,  left top, left bottom, color-stop(0%,#97c20a), color-stop(100%,#8da408)); background:- webkit-linear-gradient(top,  #97c20a 0%,#8da408 100%); background:-o-linear-gradient (top,  #97c20a 0%,#8da408 100%); background:-ms-linear-gradient(top,  #97c20a  0%,#8da408 100%); background:linear-gradient(top,  #97c20a 0%,#8da408 100%);  filter:progid:dximagetransform.microsoft.gradient( startcolorstr='#97c20a',  endcolorstr='#8da408',gradienttype=0 ); }   #cssmenu{border-color:#647306;}  #cssmenu > ul > li > a{border-right:1px solid #647306; color:#fff;}  #cssmenu > ul > li > a:after{border-color:#c2f224;}  #cssmenu > ul > li > a:hover{background:#7fa208;}  

i tried creating javascript menu links wouldn't work, if knows code can manually enter it. example line below:

stm_aix("p1i4","p1i0",[0,"flash software"],0,20); 

in css want make sure both unordered list element "ul" , list items "li"s have css applied them remove bullet in ie8

list-style: none; list-style-image: none; list-style-type: none; 

i try adding css stylesheet:

 #cssmenu ul, #cssmenu li{      list-style: none;      list-style-image: none;      list-style-type: none;  } 

if fails suggest trying css reset such the popular reset provided erik meyer


Comments

Popular posts from this blog

SPSS keyboard combination alters encoding -

Add new record to the table by click on the button in Microsoft Access -

javascript - jQuery .height() return 0 when visible but non-0 when hidden -