Remove Border Product Image And Discount Label

how do I remove or change the color of the border of image AND how do I remove the discount label. Thanks! Please look at the attachment.

1.png

Good day,



Please create a new .less file:



How To Add Custom Css With My Changes Addon - Developers' Corner - CS-Cart Community Forums



with the following rules



.ty-grid-list__image {
border: none;
}
.ty-grid-list__image .ty-discount-label {
display: none;
}

thanks so much. I will give it a try!

Why not use css files whats the difference from less, i am asking because i think it is hard to find the variable name even with firebug.

[quote name='jtheogr' timestamp='1418245442' post='199400']

Why not use css files whats the difference from less, i am asking because i think it is hard to find the variable name even with firebug.

[/quote]



You can use common css rules in less files. The less file is just included later and we have more chances that our custom rule will not overrided by another one.