Jump to content

element.style problem at category looking


Recommended Posts

  • 11 months later...

Did you ever figure it out? I'm stuck on the same problem. Java produces this code. I can see it in firebug and it's not in css unless you code it. That's where I cant figure this out. Pseudo coding or grouping and nesting... ahh I cant get it. Here's my HTML product...

 

<div id="color_picker">
<p>Pick a color:</p>
<div class="clear"></div>
<ul id="color_to_pick_list">
<li>
<a id="color_23" class="color_pick" title="Sketch" onclick="updateColorSelect(23);$('#wrapResetImages').show('slow');" style="background: #ffffff;"></a>
</li>
</ul>
<div class="clear"></div>
</div>

 

I'm trying display none for id="color_23" here is the highlighted code for <a id="color_23...

 

element.style {
background: none repeat scroll 0 0 #FFFFFF;
}
product.css (line 58)
#primary_block a.color_pick {
border: 0 solid #666666;
cursor: pointer;
display: block;
height: 74px;
width: 74px;
}
global.css (line 1514)
#color_23 {display: none;
}
global.css (line 155)
a {
color: #5D717E;
outline: medium none;
text-decoration: underline;
}

 

my code ends up like this #color_23 {display: none;

 

Any advise. Thanks!

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...