I have a Sale price attribute for one of my product classes. I'd like to style this specific attribute with a red color and bold weight. I have added the styling and it works but it only affects one of the attributes. For example:
#edit-attributes-1-9-wrapper {
color:#FF0000;
font-weight:bold;
}
So in order to make this apply to all the attributes as I add them per product I'd need to add more div styles to my CSS for each one. For example:
#edit-attributes-1-9-1-wrapper {
color:#FF0000;
font-weight:bold;
}
#edit-attributes-1-9-2-wrapper {
color:#FF0000;
font-weight:bold;
}
#edit-attributes-1-9-3-wrapper {
color:#FF0000;
font-weight:bold;
}
Is there a better method of doing this? Can I set a div for just that one attribute that will then apply itself to each of those attributes per product?
Thanks in advance.
-backdrifting
