Hi, so I’m wondering if theres a way to not have any colour or gradient applied to the big grid. i’ve gone through all the styles and they all seem to apply a overlay.
Hi,
The gradient could be removed with some CSS. The bottom box color in that grid style will be the theme accent color
– https://www.screencast.com/t/L4H3XI3z
You could keep the current accent color and change the bottom, box color with a code like this
– https://www.screencast.com/t/hdwUP1xoExy
The color is in rgba format, the last value being the opacity or transparency of the background color. You can use any color or color code format you want. Then enter the code in Theme panel->Custom CSS
.td_block_big_grid_fl_9.td-grid-style-4 .entry-title {
background-color: rgba(75,0,130, 0.7);
}
Thanks
Oh great thanks. I was using a child theme before but it was causing some issues. If I’m going to use custom CSS I think it better that I change to using a child theme right? or will those CSS settings stay in place when the theme updates?
If I should use a child theme, do you have I file I can download. Creating the child theme myself I feel like caused a bunch of issues.
Hi,
Code entered in the theme panel will not be lost when the theme is updated. It will be saved in the database. So you can either enter it there, or use a child theme, both are considered safe ways of customizing the theme.
A child theme is provided in the theme package if you would like to set a child theme
– https://forum.tagdiv.com/the-child-theme-support-tutorial/
Thanks