|
|
|
|
|
How to make a fixed width of design
In case you don't want your design to stretch according to monitor size but rather leave some empty space from left and right sides, you need to open your CCS file where find such line:
.frameBlocks {margin: auto; padding: 0 20px 20px 20px; text-align: left;}
and change it for example like this:
.frameBlocks {margin: auto; padding: 0; text-align: left; width: 999px;}
|
|
|
|
|
|
Change background in custom block
You can change the background of custom block by performing the following steps:
1. Create a new style in your active CSS file, for example like this:
.newStyleName .MiddleCenter {background-image: url(...)}
2. Add custom block to some page in CMS then click on its settings and specify in the field "Block CSS Class:" - "newStyleName".
|
|
|
|
|
|
|
 |
 |
|