Left and Right Pane

0
How do you add a left and right pane to an existing layout in the css? I would like to have a smaller container on each side that does not apply to the hole width of the screen.
asked
3 answers
1

Using float in your panes. But could you be more specific? What do you want to achieve?

answered
1

Do you mean giving the container a fixed size instead of using the entire browser width? You could try the following:

.tundra .MxClient_mainContainer {
    width: 980px;
    margin: auto;
 }

Be sure to read our tutorials or using the custom theme package from the tutorials.

answered
0

You cannot create new stuff using CSS. It is only possible to amend the styling of existing items.

answered