Overslaan naar inhoud
Odoo Menu
  • Aanmelden
  • Probeer het gratis
  • Apps
    Financiën
    • Boekhouding
    • Facturatie
    • Onkosten
    • Spreadsheet (BI)
    • Documenten
    • Ondertekenen
    Verkoop
    • CRM
    • Verkoop
    • Kassasysteem winkel
    • Kassasysteem Restaurant
    • Abonnementen
    • Verhuur
    Websites
    • Websitebouwer
    • E-commerce
    • Blog
    • Forum
    • Live Chat
    • eLearning
    Bevoorradingsketen
    • Voorraad
    • Productie
    • PLM
    • Inkoop
    • Onderhoud
    • Kwaliteit
    Personeelsbeheer
    • Werknemers
    • Werving & Selectie
    • Verlof
    • Evaluaties
    • Aanbevelingen
    • Wagenpark
    Marketing
    • Social media Marketing
    • E-mailmarketing
    • SMS Marketing
    • Evenementen
    • Marketingautomatisering
    • Enquêtes
    Diensten
    • Project
    • Urenstaten
    • Buitendienst
    • Helpdesk
    • Planning
    • Afspraken
    Productiviteit
    • Chat
    • Goedkeuringen
    • IoT
    • VoIP
    • Kennis
    • WhatsApp
    Apps van derden Odoo Studio Odoo Cloud Platform
  • Bedrijfstakken
    Detailhandel
    • Boekhandel
    • kledingwinkel
    • Meubelzaak
    • Supermarkt
    • Bouwmarkt
    • Speelgoedwinkel
    Food & Hospitality
    • Bar en Pub
    • Restaurant
    • Fastfood
    • Gastenverblijf
    • Drankenhandelaar
    • Hotel
    Vastgoed
    • Makelaarskantoor
    • Architectenbureau
    • Bouw
    • Vastgoedbeheer
    • Tuinieren
    • Vereniging van eigenaren
    Consulting
    • Accountantskantoor
    • Odoo Partner
    • Marketingbureau
    • Advocatenkantoor
    • Talentenwerving
    • Audit & Certificering
    Productie
    • Textiel
    • Metaal
    • Meubels
    • Eten
    • Brewery
    • Relatiegeschenken
    Gezondheid & Fitness
    • Sportclub
    • Opticien
    • Fitnesscentrum
    • Wellness-medewerkers
    • Apotheek
    • Kapper
    Trades
    • Klusjesman
    • IT-hardware & support
    • Zonne-energiesystemen
    • Schoenmaker
    • Schoonmaakdiensten
    • HVAC-diensten
    Andere
    • Non-profitorganisatie
    • Milieuagentschap
    • Verhuur van Billboards
    • Fotograaf
    • Fietsleasing
    • Softwareverkoper
    Browse all Industries
  • Community
    Leren
    • Tutorials
    • Documentatie
    • Certificeringen
    • Training
    • Blog
    • Podcast
    Versterk het onderwijs
    • Onderwijs- programma
    • Scale Up! Business Game
    • Bezoek Odoo
    Download de Software
    • Downloaden
    • Vergelijk edities
    • Releases
    Werk samen
    • Github
    • Forum
    • Evenementen
    • Vertalingen
    • Word een Partner
    • Services for Partners
    • Registreer je accountantskantoor
    Diensten
    • Vind een partner
    • Vind een boekhouder
    • Een adviseur ontmoeten
    • Implementatiediensten
    • Klantreferenties
    • Ondersteuning
    • Upgrades
    Github Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Vraag een demo aan
  • Prijzen
  • Help

Odoo is the world's easiest all-in-one management software.
It includes hundreds of business apps:

  • CRM
  • e-Commerce
  • Boekhouding
  • Voorraad
  • PoS
  • Project
  • MRP
All apps
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Je moet geregistreerd zijn om te kunnen communiceren met de community.
Alle posts Personen Badges
Labels (Bekijk alle)
odoo accounting v14 pos v15
Over dit forum
Help

How do I make my eCommerce site Full Width?

Inschrijven

Ontvang een bericht wanneer er activiteit is op deze post

Deze vraag is gerapporteerd
ecommerce
2 Antwoorden
2446 Weergaven
Avatar
Aljoša Jamnik

Hey guys,

How do I make my site full width?

V18

https://aethera.odoo.com/

Thanks!

0
Avatar
Annuleer
Avatar
Piyush H
Beste antwoord

To remove the default side margins and make your Odoo website full-width, follow these steps:

Method 1: Using Website Editor (No Coding)

  1. Go to Website → Edit (enable edit mode).
  2. Click the "Theme" button (paintbrush icon in the top-right).
  3. Under Layout Options, look for:
    • "Container: Fluid" → Enable this to stretch content to full width.
    • If not available, try "Boxed: Off".

Method 2: Custom CSS (More Control)

  1. Go to Website → Customize → HTML/CSS Editor.
  2. Add this CSS to remove padding/margins:
    css
    .container, .o_container_small {
        max-width: 100% !important;
        padding: 0 !important;
    }
    .oe_website_sale {
        width: 100% !important;
    }
  3. Save and refresh your page.

Method 3: Edit Theme XML (Advanced)

If you’re using a custom theme:

  1. Override the main_layout template:
    xml
    <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>
  2. Apply the changes via a custom module.

Troubleshooting

  • If the navbar doesn’t stretch, add:
    css
    header#top {
        max-width: 100% !important;
    }
  • For specific pages (like product view), target their containers:
    css
    .oe_website_sale .container {
        width: 100% !important;
    }

Result

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!)

1
Avatar
Annuleer
Aljoša Jamnik
Auteur

Option 1 worked!
Theme -> Page Layout -> From Boxed to Full.
I marked and upvoted your comment.
Thanks Piyush :)

Piyush H

Glad it worked! Happy to help anytime.

Avatar
Gautam
Beste antwoord

Using the Website Editor (No Coding Required)

  1. Navigate to Website → Edit to enable edit mode.
  2. Click the Theme button (paintbrush icon) in the top-right corner.
  3. Under Layout Options, locate the setting:
    • Container: Fluid – Enable this option to stretch the content to full width across the screen.

1
Avatar
Annuleer
Geniet je van het gesprek? Blijf niet alleen lezen, doe ook mee!

Maak vandaag nog een account aan om te profiteren van exclusieve functies en deel uit te maken van onze geweldige community!

Aanmelden
Gerelateerde posts Antwoorden Weergaven Activiteit
eCommerce product image click error (Odoo.sh & Runbot 18.0)
ecommerce
Avatar
0
okt. 25
582
Odoo18: E-commerce mini cart now showing
ecommerce
Avatar
0
okt. 25
2182
how can i add products to e-commerce categories in odoo website Opgelost
ecommerce
Avatar
Avatar
Avatar
2
jul. 25
4272
Ecommerce- out of stock
ecommerce
Avatar
0
okt. 24
2224
Manually validate the creation of a customer account module Ecommerce
ecommerce
Avatar
Avatar
1
mrt. 24
4087
Community
  • Tutorials
  • Documentatie
  • Forum
Open Source
  • Downloaden
  • Github
  • Runbot
  • Vertalingen
Diensten
  • Odoo.sh Hosting
  • Ondersteuning
  • Upgrade
  • Gepersonaliseerde ontwikkelingen
  • Onderwijs
  • Vind een boekhouder
  • Vind een partner
  • Word een Partner
Over ons
  • Ons bedrijf
  • Merkelementen
  • Neem contact met ons op
  • Vacatures
  • Evenementen
  • Podcast
  • Blog
  • Klanten
  • Juridisch • Privacy
  • Beveiliging
الْعَرَبيّة Català 简体中文 繁體中文 (台灣) Čeština Dansk Nederlands English Suomi Français Deutsch हिंदी Bahasa Indonesia Italiano 日本語 한국어 (KR) Lietuvių kalba Język polski Português (BR) română русский язык Slovenský jazyk slovenščina Español (América Latina) Español ภาษาไทย Türkçe українська Tiếng Việt

Odoo is een suite van open source zakelijke apps die aan al je bedrijfsbehoeften voldoet: CRM, E-commerce, boekhouding, inventaris, kassasysteem, projectbeheer, enz.

Odoo's unieke waardepropositie is om tegelijkertijd zeer gebruiksvriendelijk en volledig geïntegreerd te zijn.

Website made with

Odoo Experience on YouTube

1. Use the live chat to ask your questions.
2. The operator answers within a few minutes.

Live support on Youtube
Watch now