How can i change "quick view button" position ?

when i changed product column 4 to 6.
"Quick view button" isn’t center.
How can i fix it ?
Attachment 30850

2 answers

Profile photo of Sherlock 0.00 $tone October 23, 2013
Public

Hi mate,

you can open the file of skin/frontend/default/jm_crafts/css/styles.css there you look for this css rule

HTML Code:

 .products-grid li.item .form-button.jmquickview {
  border-radius: 5px 5px 0 0;
  display: none;
  left: 85px;
  padding: 15px 20px;
  position: absolute;
  text-transform: uppercase;
  top: 127px;
  transition: background 0.3s linear 0s;
  z-index: 5;
}

change it to

HTML Code:

 .products-grid li.item .form-button.jmquickview {
  border-radius: 5px 5px 0 0;
  display: none;
  left: 37px;
  padding: 15px 20px;
  position: absolute;
  text-transform: uppercase;
  top: 73px;
  transition: background 0.3s linear 0s;
  z-index: 5;
}

I hope this helps, i have used firebug to detect this change, you can also try using it next time.

#1

This question is now closed

Written By

Comments