Change text and background colour in Big Grid Full 8

Posted in: Newspaper
Post count: 11

I would like to change text and background colour on Homepage https://remelife.com/ in Big Grid Full 8 section
See screen https://cl.ly/0p3V1c331B2H (White background and black text instead of white text and blue backgroung)
but cannot find where I can do it
Please help

Post count: 20688

Hi,

So maybe something like this – https://www.screencast.com/t/wAR6Llfw
This is the code used in the example, you can change the colors if you want, then enter it in Theme panel->Custom CSS section

.td_block_big_grid_fl_8.td-grid-style-4 .entry-title {
background-color: rgba(255,255,255, 0.7);
}
.td_block_big_grid_fl_8 .td-big-grid-post .entry-title a {
color: #111;
}

Thanks

Post count: 11

thank you,
I were thinking I can change it somewhere in the menu.

I tried the same code for hover
.td_block_big_grid_fl_8 .td-big-grid-post .entry-title a:hover {
color: #111 !important;
}
but it does not work.

Can you please help me to find what is wrong?

Post count: 20688

There is no setting specific for this, all the grid styles are predefined
https://demo.tagdiv.com/newspaper/full-big-grid-8/

So you want to change the color of the text on hover as well, use this code in addition

.td_block_big_grid_fl_8.td-big-grids-fl .td_module_wrap:hover .entry-title a {
color: #111;
}

The hover color will be the one you set in this code. Change it if needed or use it as it is.

Post count: 11

Thank you very much!

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