That being said, in the category item view they will break the layout because the height is different from the other pictures.
-Regular item pictures: 278 x 278 px
-Featured item pictures: 278 x 178 px
I came up with this override that fixes half of the problem :
- Code: Select all
.itemImageBlock > a {
height: 278px;
}
However I would like that featured item picture to be in Vertical-Align: middle mode. I tried this code from a thread on google, but that did not work:
- Code: Select all
.itemImageBlock > a {
height: 278px;
display: inline-block;
width: 100%;
vertical-align: middle;
}
Any ideas?
Thank you.
Regards