Big Grid 4, Style 5 (Black Center)

Posted in: Newsmag
Post count: 104

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.

Post count: 6535

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!

Post count: 104

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?

Post count: 6535

Hi

Try this custom css in theme panel > custom css:

.td_block_big_grid_4 .td-module-meta-info{
display:none;
}

Thanks!

Post count: 104

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;
}

Post count: 6535

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!

Post count: 104

That worked- but how can I only apply this for the home page?
Would like to show it on category pages.

Post count: 6535

Hi

To apply the css only for the homepage try this code:

.home .td_block_11 .td-post-author-name, .home .td_block_11 .td-post-date{
display: none;
}

Thanks!

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