
Originally Posted by
DML73
Is there a setting for making the top navigation bar same width as the rest of the page?
Header Container Type, Main Content Container Type and Footer Container Type in Bootstrap Template Settings is set to 'container'.
Also, is there a setting to make the width of the whole 'container' a bit wider? (red arrow in image below)

Top navigation bar, hmm. A CSS setting for that doesn't currently 'pop out' at me.
For the "whole container" width, that would result in the overrides of various CSS media queries at the Bootstrap 4 breakpoints, similar to:
Code:
@media (min-width: 1200px) {
.container { max-width: 1140px; }
}
Those breakpoints and the associated default max-widths are
576px ..... 540px
768px ..... 720px
992px ..... 960px
1200px ... 1140px
P.S. Be sure to make this and other styling changes in the /css/site_specific_styles.php (rename or copy the dist.site_specific_styles.php). That'll make sure that your styling customizations survive a template upgrade more easily.
Bookmarks