Block and Row background colour

Posted in: Newspaper
Post count: 20

I want to change the background colour for blocks and rows.
Is it possible? I see tha i can input a css code as a parameter but i don’t know how.

Also i want reduce the distance between blocks (ex in a column with 6 blocks 3up and 3 down). Is it possible?

BR,

S.

Post count: 6600

Hi,

You can change this via css, create your own custom css and add it in theme panel > custom css, like this: http://screencast.com/t/I2RVnQo90Kt

.td_block2 {
background-color: aqua;
}

.td_block4 {
background-color: red;
}

Result: http://screencast.com/t/NYcWkPbE

For the distance between blocks use the .td_block_wrap class to target the blocks and set margin and padding to 0 or as you like:

.td_block_wrap {
padding-bottom: 0px;
margin-bottom: 0px;
}

Please send me a link to your site if this dose not work.

Thanks

Viewing 2 posts - 1 through 2 (of 2 total)
The forum ‘Newspaper’ is closed to new topics and replies.