forum.coppermine-gallery.net

Support => cpg1.6.x Support => cpg1.6 themes (visuals) => Topic started by: thenota2 on January 30, 2018, 06:22:05 pm

Title: Fixed Width For The Site
Post by: thenota2 on January 30, 2018, 06:22:05 pm
ive been doing this for 10 years. how can i get a fixed width for the site

width: fixed;

doesnt work

Code: [Select]
.site-content,
.site-container {
width: fixed !important;
max-width: 1300px;
margin: 0 auto;
}

.site-content:before,
.site-content:after,
.site-navigation:before,
.site-navigation:after {
display: table;
content: '';
}

Code: [Select]
<div id="page" class="site">
<div class="site-container">
<h1 class="site-title"><a href="http://olsen-twins.net">Olsen Twins</a></h1>
<div class="site-tagline"><a href="http://olsen-twins.net">Mary Kate And Ashley Olsen Pictures</a></div>
</div>
Title: Re: Fixed Width For The Site
Post by: ron4mac on January 30, 2018, 06:37:03 pm
One would think that somewhere in those 10 years you would have learned that 'fixed' is not a valid value for CSS width.
Just change max-width: 1300px; to width: 1300px; ... that makes it a 'fixed' width.
Title: Re: Fixed Width For The Site
Post by: thenota2 on January 30, 2018, 07:12:07 pm
thanks, i know ive used the fixed on other platforms, so it is a valid css value