Change Background of text for gray for Big Grid 6, style 4

Posted in: Newspaper
Post count: 40

How to change Background of the text title for a darker grey instead of blue for Big Grid 6, style 4?
Thank´s in Advanced

Post count: 23312

Hello masc,

If you want to change the color of the text title for Big Grid 6, style 4, you have to use a bit of CSS code to do that. Please try the code below and place it in Theme panel->Custom CSS area.

The code is ->

.td-grid-style-4 .entry-title {
background-color: rgba(77,18,23,.9);
}

The result you should see here -> http://screencast.com/t/XFhOja74hy

Please notice that you can change the value of the background-color as you wish.

Thank you for the message!

Post count: 40

What about make the background of the picture none or white, because we use a lot of logos and transparency for them?

Post count: 23312

Hello masc,

If you want to make the background of the picture white, please replace the RGBA value with white.

.td-grid-style-4 .entry-title {
background-color: white;
}

Thanks.

Post count: 40

For the whole Grid??

Post count: 23312

Hello masc,

Unfortunately, is not exist a general code for all kinds of Grids. Please notice that you have to change the number of the grid for each of them.

Example for Big Grid 5, style 1

.td_block_big_grid_5.td-grid-style-1 .entry-title {
background-color: rgba(77,18,23,.9);
}

Example fro Big Grid 6, style 4

.td_block_big_grid_6.td-grid-style-4 .entry-title {
background-color: rgba(77,18,23,.9);
}

Thanks.

Post count: 40

We didn’t explain enough, we are sorry, we want the background of the pictures (images) of the grid in white not the default grey.
the entry title it´s fine with the code above.
Thank´s

Post count: 23312

Hello masc,

I suppose that you are referring to the background of the grid thumb. To do that you need a bit of CSS code. Please try the code below and place it in Theme panel->Custom CSS area.

The code is ->

.td-grid-style-1 .td-module-thumb a:last-child:before{
background:none;
}

The result you should see here -> http://screencast.com/t/Ye8uF7265P

If is not what you mean, please provide more details in this regard, so I will be able to provide a more accurate code.

Thank yu for the message!

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