This topic has 4 replies, 2 voices, and was last updated 7 years ago ago by Rose Tyler
Good Afternoon,
I was wondering if someone could help me move the sidebar on mobile version from the bottom of the page to the top..
The reason being, our store categories are in that sidebar and it makes no sense for them to be below the actual items.
You can see what I mean here: http://opulentbeds.com/shop/
Thanks in advance, Greg.
Hello,
Thank you for purchasing our theme and for reaching us.
Please add this code in custom.css:
@media (max-width:767px){
body.archive.woocommerce .page-content > .row-fluid{
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
}
}
How to create custom.css you can watch in this tutorial https://www.youtube.com/watch?v=Qok2zRedRMY.
Regards
Seems to work fine on the “Inspect” panel when editing on Desktop but not on an actual mobile.. Any ideas?
Please change the code to:
@media (max-width:767px){
.post-type-archive .page-content > .row-fluid{
-webkit-box-orient: vertical;
-webkit-box-direction: reverse;
-ms-flex-direction: column-reverse;
flex-direction: column-reverse;
}
}
then clear cache and check.
Regards
You must be logged in to reply to this topic.Log in/Sign up