html - Elements of website don't work in IE -
on site i'm working on high school basketball team, elements don't work in internet explorer. site hermantownbasketball.com. boys basketball sidebar should have nested drop down menus, 1 when mouse on team, such "high school" , when mouse on grade under team, such 9th grade. works fine in chrome, however, can't work in version of internet explorer. below part of html , corresponding css using.
unfortunately, don't know enough css know part of code ie doesn't or how fix it.
any appreciated!
html
<span class = "boyitem"> <h3>high school</h3> <li class="group"> <h4>9th grade</h4> <div class = "nested">schedule</div> <div class = "nested">events</div> <div class ="nested">forms</div> <div class ="nested">calendar</div> </li> <li class="group"> <h4>jv/varsity</h4> <div class = "nested">schedule</div> <div class = "nested">events</div> <div class = "nested">forms</div> <div class = "nested">calendar</div> </li> </span> /* creates box around title each boy section. */ .boyitem h3 { background:#1c23e8; color:#effa20; padding-right:2px; padding:10px; font-size:18px; margin-left:-30px; margin-top:-10px; } ###css .boyitem h3:hover { background:#2a8ff5; } /* prevents boy sub-sections being visable */ .boyitem li h4 { position: absolute; left:-9999px; font-size:15px; list-style-type:none;} /* shows boy sub-sections when user mouses on section title. */ .boyitem:hover li h4 { position:relative; left:10px; background:#1c23e8; color:#effa20; padding-left:20px; padding:5px; } .boyitem:hover li h4:hover { background:#2a8ff5;} .nested { position:absolute; left:-9999px; background:#352eff; color:#effa20; padding-right:2px; padding:4px; font-size:14px; margin:2px; margin-left:30px; margin-top:0px; margin-right:0px; margin-bottom:-2px;} .group:hover .nested {position:relative; left:0px; } .group:hover .nested:hover { background:#2a8ff5}
internet explorer known using unique approach (both real , de facto) standards.
give this library shot. can't guaranteed it'll fix anything, worths try.
Comments
Post a Comment