columns products category bike store

Rate this topic: Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.Evaluations: 1, 1.00 on the average.1.00 out of 6 based on 1 vote(s)
GK User
Fri Aug 31, 2012 3:17 pm
Reply with quote
Report this post
I noticed that the last column in "products category" is more wider than the other ... this is because the last column does not add a class called vertical-separator!
should review the grid's system!
User avatar
Fresh Boarder

GK User
Sat Sep 01, 2012 8:16 pm
Reply with quote
Report this post
It is a problem with the VM generated code. You can fix this using following CSS code:
Code: Select all
.vertical-separator {
    padding:0!important;
}
.row .product.width50,
.row .product.width33,
.row .product.width25,
.row .product.width20 {
    padding: 0 10px!important;
}
User avatar
Administrator

GK User
Wed Sep 12, 2012 9:16 pm
Reply with quote
Report this post
Hello! Thank You!
User avatar
Fresh Boarder

GK User
Wed Sep 12, 2012 9:40 pm
Reply with quote
Report this post
this is what happen when i fixed it with your code: http://www.cubomusic.com/index.php/chitarre
there isn't space between columns and rows.

before doing it, the third column was larger then first two and there was the same space (padding) between columns and rows.

Thanks
User avatar
Fresh Boarder

GK User
Thu Sep 13, 2012 12:50 am
Reply with quote
Report this post
Hi,

Please try to replace fragment:
Code: Select all
.row .product.width50,
.row .product.width33,
.row .product.width25,
.row .product.width20 {
    padding: 0 10px!important;
}


with:

Code: Select all
.row > div {
    padding: 0 10px!important;
}


I've testet it in the Chrome dev tools and it should works fine.
User avatar
Administrator

GK User
Thu Sep 13, 2012 10:17 am
Reply with quote
Report this post
I've try your fix in chrome, but there is no space between rows! For me works better with this
Code: Select all
.row > div {
    padding: 5px 10px!important;
}


what do you think about this?

Thanks
User avatar
Fresh Boarder

GK User
Thu Sep 13, 2012 10:18 am
Reply with quote
Report this post
You're right - it is the better solution :)
User avatar
Administrator

GK User
Thu Sep 13, 2012 10:58 am
Reply with quote
Report this post
Perfect!!
Thanks! ;)
User avatar
Fresh Boarder


cron