Change Gray shadow on Slider

Posted in: Newspaper
Post count: 186

Plz how do i change the gray shadow below the slider that text appears on

Post count: 23312

Hello willysawa,

If you want to disable the shadow effect for your slider, you have to use a bit of CSS code to hide it. Please try the code below and place it in Theme panel->Custom CSS area.

The code is ->

.td-image-gradient:before {
display:none;
}

The result you should see here -> http://screencast.com/t/J06se2zX66Z

Thanks.

Post count: 186

How about, if i want to change the color to black

Post count: 23312

Hello willysawa,

If you want to change the color of this gradient feature, you have to use the following code and try to change the RGBA values as you want.

The code is ->

.td-image-gradient:before {
background: linear-gradient(to bottom,rgba(0,0,0,0) 0%,rgba(0,40,5,.8) 100%)!important;
}

The result -> http://screencast.com/t/XMKVAhaCbX5S

If is not what you mean, please provide more details about your desired changes.

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