How can I adjust the width of my Navbar and Container to be a certain width? Just the product pages.
Solved! Go to the solution
Hi @JustJinn !
You can adjust this by adding this code inside your product.liquid file only:
@media screen and (min-width: 591px)
{
.wrapper {
width: 1500px;
}
}
Let me know if that works! Nav & Container are bound to the same element.
Cheers!
This is an accepted solution.
You have to wrap it with the <style> tags like this:
<style>
@media screen and (min-width: 591px)
{
.wrapper {
width: 1500px!important;
}
}
</style>
User | Count |
---|---|
455 | |
190 | |
137 | |
61 | |
36 |