Jump to content

[SOLVED] 1.4.8.2 Image doesnt match the size, Even After i Regenerate.


Recommended Posts

Image is 200 x 200 px but in product.css (or global.css) width and height are set to 280px.

Find these two blocks of code

#primary_block #image-block img#bigpic {
width: 280px;
height: 280px;
margin: 5px 0 0 5px;
cursor: pointer;
}
#primary_block #image-block {
width: 290px;
height: 290px;
background: url('http://sty.com.au/themes/theme207/css/../img/img_large.png') 0 0 no-repeat;
}

and change them to

#primary_block #image-block img#bigpic {
width: 200px;
height: 200px;
margin: 5px 0 0 5px;
cursor: pointer;
}
#primary_block #image-block {
width: 210px;
height: 210px;
background: url('http://sty.com.au/themes/theme207/css/../img/img_large.png') 0 0 no-repeat;
}

 

And also re-size this themes/theme207/img/img_large.png to 210 x 210 px, if you want

Link to comment
Share on other sites

×
×
  • Create New...