활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
활동이 없어 이 대화는 잠겼습니다. 새 게시물을 작성해 주세요.
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.
해결되었습니다! 솔루션으로 이동.
조회 수
답글
좋아요 수
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
조회 수
Likes
답글
조회 수
Likes
답글