Displaying products as a single column in category view

GK User
Sat Feb 06, 2016 12:39 am
Hi,

How can I set up the hikashop so it displays all products as a single column, like on my existing site:

Capture.JPG
User avatar
Junior Boarder

teitbite
Wed Feb 10, 2016 11:09 am
Could you please provide me with a URL to your website, either here or via PM (click the “Private Message” text underneath my avatar) so that I may analyze it? It is a lot easier for us to diagnose issues when we have a live site to examine.
User avatar
Moderator

GK User
Wed Feb 10, 2016 3:35 pm
User avatar
Junior Boarder

teitbite
Wed Feb 17, 2016 10:59 am
Please add this code to override.css and make sure override is enabled in template settings.

Code: Select all
#hikashop_category_information_module_732 div.hikashop_product {
    float: none;
    width: 100% !important;
}

#hikashop_category_information_module_732 div.hikashop_product .hikashop_product_image {
    float: left;
}
User avatar
Moderator

GK User
Wed Apr 26, 2017 11:57 pm
Hi, what CSS code should be used to display a similar result in Virtuemart? Thanks!
User avatar
Fresh Boarder

teitbite
Mon May 01, 2017 2:43 pm
HI

Please tell me the url to virtuemart category layout You wish to show like that so I'll be able to check.
User avatar
Moderator

GK User
Mon May 01, 2017 4:14 pm
Hi teitbite, thanks for your reply. THe link to the virtuemart category that I'd like to display in a single column with the photo to the left is at http://num.to/8623-4481-9282
Thanks again
User avatar
Fresh Boarder

teitbite
Thu May 04, 2017 10:36 am
Hi

Please add this code to override.css and make sure override is enabled in template settings.

Code: Select all
.browse-view .product .spacer > div:first-child {
    float: left;
}

.browse-view .product .spacer::before{
    clear: both;
}
User avatar
Moderator


cron