#7517

doanthuy
Moderator

hi,
1, About question 1: To fix this error, you need make these steps:
– Go to sns_simo\skin\frontend\sns_simo\default\less\content\detail.less
– Goto line 328
– Replace code:
input {
.inline-block();
background: none;
color: @text;
float: left;
border:1px solid #eaeaea;
.square(34px);
&.qty {
.square(34px);
text-align: center;
}
}
by code
input {
.inline-block();
background: none;
color: @text;
float: left;
border:1px solid #eaeaea;
.square(34px);
&.qty {
padding:0;
.square(34px);
text-align: center;
}
}
2, About question 2: To fix this error, you need make these steps:
– Go to sns_simo\skin\frontend\sns_simo\default\less\mixin\product-block.less
– Search key word ‘.icon-product () {‘
Replace code:
.icon-product () {
position: absolute;
top: 10px;
left:0;
font-size: 10px;
text-align: center;
color: #fff;z-index:99;
by code:
.icon-product () {
position: absolute;
top: 10px;
left:0;
font-size: 10px;
text-align: center;
color: #fff;z-index:1;

– Search key word ‘.wrap-addtocart’
replace code:
.wrap-addtocart {
bottom: -15px;
left: 0;
margin:0 auto;
width: 145px;
position: absolute;
right: 0;
.transition(all 200ms linear);
z-index:9;
by code:
.wrap-addtocart {
bottom: -15px;
left: 0;
margin:0 auto;
width: 145px;
position: absolute;
right: 0;
.transition(all 200ms linear);
z-index:1;
3, About question 3: no, there isn’t

Thank.