if you look on this page you'll notice that a bunch of the products have "Add to Cart" buttons next to them. I want to make those display:none. But they each have their own unique ids and no consistent class. I was hoping with this code, it would hide them all but i guess I don't have the syntax correct: .category-page-type input.product-list-control {display:none;} Code (markup): how do i select all the input fields that are with the .product-list-control and apply my display:none; to them? please advise. thanks in advance!
If I understood you right, you need this css code: .product-list-control input{display:none;} Code (CSS):
<input type="hidden" name="hidden" value="" /> Code (markup): or do it with css #myInput { display:none; } Code (markup):