Passa al contenuto
Odoo Menu
  • Accedi
  • Provalo gratis
  • App
    Finanze
    • Contabilità
    • Fatturazione
    • Note spese
    • Fogli di calcolo (BI)
    • Documenti
    • Firma
    Vendite
    • CRM
    • Vendite
    • Punto vendita Negozio
    • Punto vendita Ristorante
    • Abbonamenti
    • Noleggi
    Siti web
    • Configuratore sito web
    • E-commerce
    • Blog
    • Forum
    • Live chat
    • E-learning
    Supply chain
    • Magazzino
    • Produzione
    • PLM
    • Acquisti
    • Manutenzione
    • Qualità
    Risorse umane
    • Dipendenti
    • Assunzioni
    • Ferie
    • Valutazioni
    • Referral dipendenti
    • Parco veicoli
    Marketing
    • Social marketing
    • E-mail marketing
    • SMS marketing
    • Eventi
    • Marketing automation
    • Sondaggi
    Servizi
    • Progetti
    • Fogli ore
    • Assistenza sul campo
    • Helpdesk
    • Pianificazione
    • Appuntamenti
    Produttività
    • Comunicazioni
    • Approvazioni
    • IoT
    • VoIP
    • Knowledge
    • WhatsApp
    App di terze parti Odoo Studio Piattaforma cloud Odoo
  • Settori
    Retail
    • Libreria
    • Negozio di abbigliamento
    • Negozio di arredamento
    • Alimentari
    • Ferramenta
    • Negozio di giocattoli
    Cibo e ospitalità
    • Bar e pub
    • Ristorante
    • Fast food
    • Pensione
    • Grossista di bevande
    • Hotel
    Agenzia immobiliare
    • Agenzia immobiliare
    • Studio di architettura
    • Edilizia
    • Gestione immobiliare
    • Impresa di giardinaggio
    • Associazione di proprietari immobiliari
    Consulenza
    • Società di contabilità
    • Partner Odoo
    • Agenzia di marketing
    • Studio legale
    • Selezione del personale
    • Audit e certificazione
    Produzione
    • Tessile
    • Metallo
    • Arredamenti
    • Alimentare
    • Birrificio
    • Ditta di regalistica aziendale
    Benessere e sport
    • Club sportivo
    • Negozio di ottica
    • Centro fitness
    • Centro benessere
    • Farmacia
    • Parrucchiere
    Commercio
    • Tuttofare
    • Hardware e assistenza IT
    • Ditta di installazione di pannelli solari
    • Calzolaio
    • Servizi di pulizia
    • Servizi di climatizzazione
    Altro
    • Organizzazione non profit
    • Ente per la tutela ambientale
    • Agenzia di cartellonistica pubblicitaria
    • Studio fotografico
    • Punto noleggio di biciclette
    • Rivenditore di software
    Carica tutti i settori
  • Community
    Apprendimento
    • Tutorial
    • Documentazione
    • Certificazioni 
    • Formazione
    • Blog
    • Podcast
    Potenzia la tua formazione
    • Programma educativo
    • Scale Up! Business Game
    • Visita Odoo
    Ottieni il software
    • Scarica
    • Versioni a confronto
    • Note di versione
    Collabora
    • Github
    • Forum
    • Eventi
    • Traduzioni
    • Diventa nostro partner
    • Servizi per partner
    • Registra la tua società di contabilità
    Ottieni servizi
    • Trova un partner
    • Trova un contabile
    • Incontra un esperto
    • Servizi di implementazione
    • Testimonianze dei clienti
    • Supporto
    • Aggiornamenti
    GitHub Youtube Twitter Linkedin Instagram Facebook Spotify
    +1 (650) 691-3277
    Richiedi una demo
  • Prezzi
  • Aiuto

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

  • CRM
  • e-Commerce
  • Contabilità
  • Magazzino
  • PoS
  • Progetti
  • MRP
All apps
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
È necessario essere registrati per interagire con la community.
Tutti gli articoli Persone Badge
Etichette (Mostra tutto)
odoo accounting v14 pos v15
Sul forum
Assistenza

How do I make my eCommerce site Full Width?

Iscriviti

Ricevi una notifica quando c'è un'attività per questo post

La domanda è stata contrassegnata
ecommerce
2 Risposte
2345 Visualizzazioni
Avatar
Aljoša Jamnik

Hey guys,

How do I make my site full width?

V18

https://aethera.odoo.com/

Thanks!

0
Avatar
Abbandona
Avatar
Piyush H
Risposta migliore

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
Abbandona
Aljoša Jamnik
Autore

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
Risposta migliore

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
Abbandona
Ti stai godendo la conversazione? Non leggere soltanto, partecipa anche tu!

Crea un account oggi per scoprire funzionalità esclusive ed entrare a far parte della nostra fantastica community!

Registrati
Post correlati Risposte Visualizzazioni Attività
eCommerce product image click error (Odoo.sh & Runbot 18.0)
ecommerce
Avatar
0
ott 25
521
Odoo18: E-commerce mini cart now showing
ecommerce
Avatar
0
ott 25
2098
how can i add products to e-commerce categories in odoo website Risolto
ecommerce
Avatar
Avatar
Avatar
2
lug 25
4198
Ecommerce- out of stock
ecommerce
Avatar
0
ott 24
2168
Manually validate the creation of a customer account module Ecommerce
ecommerce
Avatar
Avatar
1
mar 24
3955
Community
  • Tutorial
  • Documentazione
  • Forum
Open source
  • Scarica
  • Github
  • Runbot
  • Traduzioni
Servizi
  • Hosting Odoo.sh
  • Supporto
  • Aggiornamenti
  • Sviluppi personalizzati
  • Formazione
  • Trova un contabile
  • Trova un partner
  • Diventa nostro partner
Chi siamo
  • La nostra azienda
  • Branding
  • Contattaci
  • Lavora con noi
  • Eventi
  • Podcast
  • Blog
  • Clienti
  • Note legali • Privacy
  • Sicurezza
الْعَرَبيّة 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 è un gestionale di applicazioni aziendali open source pensato per coprire tutte le esigenze della tua azienda: CRM, Vendite, E-commerce, Magazzino, Produzione, Fatturazione elettronica, Project Management e molto altro.

Il punto di forza di Odoo è quello di offrire un ecosistema unico di app facili da usare, intuitive e completamente integrate tra loro.

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