Grid-style-5

Posted in: Newsmag
Post count: 14

Hello. I want to delete background black color from “Grid-style-5”, by deleting line "background-color: #000;"

I found “.td-grid-style-5 .td-module-thumb a:last-child:before” at “style.css”, but it not works, because i should edit “style.css?ver=3.3”. I cant find this file at my server. Can you help me?)

Post count: 23312

Hello dobryidesign,

You should try using the code below and place it in Theme panel->Custom CSS area.

The code is ->

.td-grid-style-5 .td-module-thumb a:last-child:before{
display:none!important;
}

The result is here -> https://www.screencast.com/t/UBsxouOlT

Thanks for the message!

Post count: 14

I put this code .td-grid-style-5 .td-module-thumb a:last-child:before{
display:none!important;
}
to custom.css but it not works.(

I try alternative variant and copy these from style.css .td-grid-style-5 .td-module-thumb a:last-child:before {
content: '';
width: 100%;
height: 100%;
position: absolute;
background: #000;
z-index: 1;
opacity: 0.7;
top: 0;
}
and change to these at custom css: .td-grid-style-5 .td-module-thumb a:last-child:before {
content: '';
width: 100%;
height: 100%;
position: absolute;
background: #000;
z-index: 1;
opacity: 0.2!important;
top: 0;

But both variant is not work.

Post count: 23312

Hello dobryidesign,

Below, I gave you a code which is applied to your first Big Grid at your homepage which is Big Grid Style 4. Try the code below and place it in Theme panel->Custom CSS area.

.td-grid-style-4 .td-module-thumb a:last-child:before{
display:none!important;
}
@media (min-width: 1025px){
.td-grid-style-4.td-hover-1 .td-module-thumb:before {
display:none!important;
}
}

The code is -> https://www.screencast.com/t/ZCrV0W6KQp

Thanks for your understanding!

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