Advertisement
belostotsky

Rounded borders for product thumbnails

Feb 23rd, 2015
221
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
CSS 0.58 KB | None | 0 0
  1. /* make the border always visible */
  2. .ecwid-productBrowser-productsGrid-v2 td.ecwid-productBrowser-productsGrid-productInside {
  3. border-color: #b4b8bc !important;  
  4. }
  5.  
  6. /* rounded corners for top element of product preview */
  7. .ecwid-productBrowser-productsGrid-cellTop {
  8.     border-radius: 15px 15px 0px 0px; /* change these values to make corners more or less rounded */
  9. }
  10.  
  11. /* rounded corners for bottom element of product preview */
  12. .ecwid-productBrowser-productsGrid-cellBottom {
  13.     border-radius: 0px 0px 15px 15px; /* change these values to make corners more or less rounded */
  14. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement