Hey guys,
How do I make my site full width?
V18
Share and discuss the best content and new marketing ideas, build your professional profile and become a better marketer together.
Hey guys,
How do I make my site full width?
V18
To remove the default side margins and make your Odoo website full-width, follow these steps:
.container, .o_container_small {
max-width: 100% !important;
padding: 0 !important;
}
.oe_website_sale {
width: 100% !important;
}If you’re using a custom theme:
<template id="full_width_layout" inherit_id="website.layout">
<xpath expr="//main[@id='wrap']/div[hasclass('container')]" position="replace">
<div class="container-fluid">
<t t-call-content="content"/>
</div>
</xpath>
</template>header#top {
max-width: 100% !important;
}.oe_website_sale .container {
width: 100% !important;
}Your site (e.g., AETHERA) will now use the full screen width instead of the default centered layout.
Need help? Share a screenshot of the issue, and I’ll refine the solution! 🚀
🚀 Did This Solve Your Problem?
If this answer helped you save time, money, or frustration, consider:
✅ Upvoting (👍) to help others find it faster
✅ Marking as "Best Answer" if it resolved your issue
Your feedback keeps the Odoo community strong! 💪
(Need further customization? Drop a comment—I’m happy to refine the solution!)
Create an account today to enjoy exclusive features and engage with our awesome community!
Sign up