Any way to change colours for Big Grid 8 Style 3?

Posted in: Newspaper
Post count: 16

Hey there,

I am using Big Grid 8 Style 3 on my homepage but the colours of the rectangles are too bright and I need to change them to something different. Is there any way to achieve this?

Post count: 7909

Hi,

The theme doesn’t have an option to change the gradient color and you will have to use custom css to change the color for each big grid spot. Please use browser inspector tool – http://screencast.com/t/qtwIwDjws9 You have to target something like this if you want to change this only for grid 8 – http://screencast.com/t/HKB4gtLBpq

.td_block_big_grid_8.td-grid-style-3 .td-big-grid-post-0 .td-module-thumb a:last-child:before {
background: -moz-linear-gradient(45deg, #222 0%, #4a8f5e 100%);
background: -webkit-gradient(left bottom, right top, color-stop(0%, #222), color-stop(100%, #4a8f5e));
background: -webkit-linear-gradient(45deg, #222 0%, #4a8f5e 100%);
background: -o-linear-gradient(45deg, #222 0%, #4a8f5e 100%);
background: -ms-linear-gradient(45deg, #222 0%, #4a8f5e 100%);
background: linear-gradient(45deg, #222 0%, #4a8f5e 100%);
}

This custom css is for first spot(just change to the color that you need), for the other grid spots please change td-big-grid-post-0 to td-big-grid-post-1 and so on… http://screencast.com/t/Y4tCTEbYO

Hope this helps!

Post count: 16

Hi Alin,

Thanks for the help! I’ll try this tonight.

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