12345678910111213141516171819202122232425262728293031323334353637383940414243444546474849505152535455565758596061 |
- Customize the design of your website
- ====================================
- Below are a few settings that can be used to change branding, design, and layout of your website.
- Site name
- ---------
- This is shown by default in the navbar, and also added to the title attribute of each page.
- This can be changed in Settings > Sites > localhost. Hostname and port only need to be changed
- when running in production.
- :ref:`site-name`
- Site settings
- -------------
- Under Settings > Sites in the Wagtail Admin, you will want to make sure this setting is up
- to date with the proper Hostname and Port. Failure to do so can cause the Preview button on
- pages to return a 500 error.
- Logo & icon
- -----------
- The logo that appears in the navbar, the wagtail admin, and your favicon can be set in
- Settings > CRX Settings. Here you can also change navbar settings (based on Bootstrap CSS framework).
- :ref:`logo`
- Menu / navigation bars
- ----------------------
- Navbars are top navigation elements that create a "main menu" experience. Navbars are managed
- as snippets. They render from top down based on the order they were created in.
- :ref:`navbar`
- Footers
- -------
- Similar to Navbars, footers are also managed as snippets and also render top down based on
- the order they were created in.
- :ref:`footer`
- Custom CSS
- ----------
- Each installation type (basic or sass) has it's own way of adding CSS.
- Check out :ref:`adding_custom_css` for instructions.
- By default, Bootstrap 5 is already included on the site.
- .. note::
- You can also use Bootstrap color and utility classes in the **Custom CSS** fields on your pages in CMS.
- Sometimes you may need more customization than Bootstrap classes can provide, in which case you can
- create your own custom classes in your CSS files and use them in your templates and in the CMS.
- Custom HTML templates
- ---------------------
- To learn how to create custom HTML templates, see the advanced tutorial:
- :doc:`/advanced/advanced01`.
|