Hi All - I have an editable template, in that I should have the full width Header and Footer Layout container in it and should have the parsys(Layout container) for the body section. It should have the specific width (Say 1300 px). How can we get the parses with the specific width (I know that we can use the responsive grid resizing but the requirement is to have the specific width.
Solved! Go to Solution.
Views
Replies
Total Likes
yes you can handle with CSS but using the vanila css you should use bootstrap classes other wise when the page will open in small devices responsivness will be impacted.
you can use col-lg-sm, col-lg-md etc for this purpose.
hope this will help.
Umesh Thakur
You need to achieve this through css.
Let entire page width be 1300 and stretch header and footer to full width like below-
@v1101 one way is to edit your basepage.html (base page template), to wrap it around with <div class="container"></div>. With the container you can add CSS to change the max-width and sizing.
.container {
width: 100%;
max-width: 1300px;
margin: 0 auto;
}
yes you can handle with CSS but using the vanila css you should use bootstrap classes other wise when the page will open in small devices responsivness will be impacted.
you can use col-lg-sm, col-lg-md etc for this purpose.
hope this will help.
Umesh Thakur
Views
Likes
Replies