Move Virtuemart product detail thumbnail images from bottom to side

richard25
165 Posts
richard25 posted this 05 April 2017

Hi

How can I move the thumbnails on the Product detail page (example below) from the bottom to the side(screenshot attached)

https://www.fairytaleendings.co.uk/shop-by-department/prom-dresses/dave-and-johnny-a5169b-detail

Thanks

Hi How can I move the thumbnails on the Product detail page (example below) from the bottom to the side(screenshot attached) https://www.fairytaleendings.co.uk/shop-by-department/prom-dresses/dave-and-johnny-a5169b-detail Thanks
Vote to pay developers attention to this features or issue.
5 Comments
Order By: Standard | Newest
Support Team
Support Team posted this 05 April 2017

Hello,

Sorry but there is no such option for Product Thumbnails.

Sincerely,
Nettie,
BillionDigital Team

Hello, Sorry but there is no such option for Product Thumbnails. Sincerely, Nettie, BillionDigital Team
richard25
165 Posts
richard25 posted this 05 April 2017

Ok

Can this page be edited with a template override? Is it a virtuemart page or a themler page?

Cheers

Ok Can this page be edited with a template override? Is it a virtuemart page or a themler page? Cheers
Support Team
Support Team posted this 10 April 2017

Hello Richard,
you may try to move the thumbnails to the left via custom CSS code. Here is a sample for Desktop mode
.bd-imagethumbnails-4{
bottom: 20%;
height: 20%;
left: 100%;
position: absolute!important;
width: 100%;
z-index: 100;
}

Please remember that you may need to play around the z-index value. And left, bottom values should be set separately for each screen size (Laptop, Tablet, Phone). Because the position is set absolute

Regards,
Aileen

Hello Richard, you may try to move the thumbnails to the left via custom CSS code. Here is a sample for Desktop mode `.bd-imagethumbnails-4{ bottom: 20%; height: 20%; left: 100%; position: absolute!important; width: 100%; z-index: 100; }` Please remember that you may need to play around the z-index value. And left, bottom values should be set separately for each screen size (Laptop, Tablet, Phone). Because the position is set absolute Regards, Aileen
richard25
165 Posts
richard25 posted this 10 April 2017

Hi

How do I apply this code to each screen size? I thought Custom CSS applied to all formats.

Cheers

Hi How do I apply this code to each screen size? I thought Custom CSS applied to all formats. Cheers
Support Team
Support Team posted this 11 April 2017

Hello Richard,
you may specify different CSS options for different screen sizes with the help of media queries, e.g.

@media screen and (max-width: 750px) {
.bd-imagethumbnails-4{
...
}
}

For details you may refer to the article https://www.w3schools.com/cssref/css3_pr_mediaquery.asp

regards,
Aileen

Hello Richard, you may specify different CSS options for different screen sizes with the help of media queries, e.g. @media screen and (max-width: 750px) { .bd-imagethumbnails-4{ ... } } For details you may refer to the article https://www.w3schools.com/cssref/css3_pr_mediaquery.asp regards, Aileen
You must log in or register to leave comments