Under line color below Main Menu

Posted in: Newspaper
Post count: 53

Hello,
I need to hide or change the color of the mentioned line under the main menu. I can’t seem to find the option.
http://prntscr.com/kcr4sv

Post count: 20688

Hi,

That is actually an image, so there would be no setting to change it’s color. You could remove that and use a CSS border or shadow instead. This is an example with a shadow
https://www.screencast.com/t/uZGHxcfqq
Code used in the example

.td-header-gradient:before {
display: none;
}
.td-header-gradient:after {
content:"";
position:absolute;
height: 12px;
width: 100%;
bottom:0;
-webkit-box-shadow: 0px 12px 5px 0px rgba(186,112,186,1);
-moz-box-shadow: 0px 12px 5px 0px rgba(186,112,186,1);
box-shadow: 0px 12px 5px 0px rgba(186,112,186,1);
}

Shadow generator here if you want to use it
https://www.cssmatic.com/box-shadow

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