broken catalog grid view table

Attachment 36867

I hide a "add cart" btn and so table become different size then it breaks table of grid view.

I would like to leave a hight either the btn is there or not.

Thanks for your support.

3 answers

Profile photo of chavan 100.00 $tone May 16, 2014
Public

Go to this File: skin\frontend\default\jm_megamall\css\styles.css

Replace this code

Code:

.products-grid li.item {
    border-bottom: 1px solid #ebebeb
    float: left;
    padding: 0
}

with

Code:

.products-grid li.item {
    border-bottom: 1px solid #ebebeb ;
    float: left;
    padding: 0;
    min-height:307px;
}
#1
Profile photo of Seoki Lee 1510.00 $tone May 19, 2014
Public

Please open the file /skin/frontend/default/jm_megamall/css/layout-mobile.css.

At line 420, replace this declaration:

Code:

.list-categories .products-grid li.item {
    width: 50% !important;
}

With:

Code:

.list-categories .products-grid li.item {
    min-height: 20px;
    width: 50% !important;
}
#3

Please login or Register to Submit Answer

Written By

Comments