How can I lighten up the black overlay on the big grid using the Black Center style? It’s a bit too dark at the moment and would like to lighten it up slightly.
I’m using Big Grid 4 but I guess this could apply to all the other big grids that use Style 5.
Hi
You can modify the opacity with custom css to reduce the dark effect.
.td_block_big_grid_4.td-grid-style-5 .td-module-thumb a:last-child:before{
opacity: 0.3;
}
This css works for big grid 4 with style 5, if you want to aply it to another grids or style just change the classes as you need: http://screencast.com/t/gVlLyybS
Let me know how it goes and provide more details if that’s not what you mean.
Thanks!
Nice- that worked.
Could I also hide author name and date from the grid so only the post title shows? What would be the CSS for that?
Thank you- that worked.
If I want to remove that info from block 11 on my home page as well, what would be the css to do that? Would the following work:
.td_block11 .td-module-meta-info{
display:none;
}
Hi
The classes you used don’t match, you can try this css: http://screencast.com/t/kDj2y6BclORN
.td_block_11 .td-post-author-name, .td_block_11 .td-post-date{
display:none;
}
Thanks!
That worked- but how can I only apply this for the home page?
Would like to show it on category pages.