Ruchic1 wrote:
In general, you can try and create a top container element on the page and style it so that should have:
I am not sure, though, how well it will get along with the Bootstrap-based Starter Site. Also, the fixed width has its own disadvantages and may not work well on various types of devices and resolutions
Example:
Your CSS:
Thanx for all the help you are giving us in designing our website.Now we have designed some of our pages we found that we want to have a different background color and our page with script should be of white background and also the page should be like in the middle(for example http://www.royalgreenland.gl/kl).I tried my best ,also i tried with boottheme.Can you please guide me through this also.It will be a great help.Thx in advance.This question is not in fact related to Composite C1, rather to styling and layout which you can do with CSS.
In general, you can try and create a top container element on the page and style it so that should have:
- a fixed width, say, 800px
-
the left and right margins set to 'auto'
I am not sure, though, how well it will get along with the Bootstrap-based Starter Site. Also, the fixed width has its own disadvantages and may not work well on various types of devices and resolutions
Example:
Your CSS:
#topContainerElement
{
width: 800px;
margin: 0px auto;
}
Your page template:...
<body>
<div id="topContainerElement">
<!-- the original markup -->
</div>
</body>