Hello
IE 7.0.5730.11
Opera 9.27
Firefox 2.0.0.14
I have the following in my stylesheet
..navbody a{
text-decoration: none;
color: rgb(68, 146, 181);
}
a.leaf{
text-decoration: none;
color: rgb(254, 100, 253);
font-size: 0.75em;
}
AJAX produces the following html
<div id="navmenu">
<div id="menuheader" >
Browse Catagories
<br/>
<a href="javascrip t:getMenuUpdate ('-1')">collapse menu</a>
</div>
<div id="menudiv" class="navbody" >
<span>
<a href="javascrip t:getMenuUpdate ('1')">
</a>
<a class="node" href="javascrip t:getMenuUpdate ('1')">Jeweller y</a>
</span>
<br/>
<span>
<img border="0" src="images/navspacer.jpg"/>
<a class="leaf" href="products? catagoryId=1:1" >Earrings</a>
</span>
.... etc
in Opera and Firefox the anchor with class 'leaf' is rendered in a
smaller pink font (nice!) in IE it's rendered in the same sized light
blue as other stuff in the navbody
Are class selectors supposed to work when output is dynamically
generated ? or is this another 'feature' of IE
TIA
Idaho
IE 7.0.5730.11
Opera 9.27
Firefox 2.0.0.14
I have the following in my stylesheet
..navbody a{
text-decoration: none;
color: rgb(68, 146, 181);
}
a.leaf{
text-decoration: none;
color: rgb(254, 100, 253);
font-size: 0.75em;
}
AJAX produces the following html
<div id="navmenu">
<div id="menuheader" >
Browse Catagories
<br/>
<a href="javascrip t:getMenuUpdate ('-1')">collapse menu</a>
</div>
<div id="menudiv" class="navbody" >
<span>
<a href="javascrip t:getMenuUpdate ('1')">
</a>
<a class="node" href="javascrip t:getMenuUpdate ('1')">Jeweller y</a>
</span>
<br/>
<span>
<img border="0" src="images/navspacer.jpg"/>
<a class="leaf" href="products? catagoryId=1:1" >Earrings</a>
</span>
.... etc
in Opera and Firefox the anchor with class 'leaf' is rendered in a
smaller pink font (nice!) in IE it's rendered in the same sized light
blue as other stuff in the navbody
Are class selectors supposed to work when output is dynamically
generated ? or is this another 'feature' of IE
TIA
Idaho
Comment