I am trying to get rid 2 lines and change one line color to black

Posted in: Newspaper
Post count: 200

Hi

I would like to change 3 things (image below).

1. Get rid off completely that blue line on top. Or make it white. I think the first choice is better and proper way.

2. Same as previous one. Get rid off completely that blue line.

3. Change that colour from blue to black.

NB! THEME ACCENT COLOR is not a good idea in the situation like that. Since there is lots of other stuff which also will use same colour (including links). And another thing is that in on case I would like to have it one colour (white) and another area I would like it to be black.

Screenshot

Post count: 20688

Hi,

You can use this code for the top and menu borders, enter it in Theme panel->Custom Css

.td-magazine .td-header-style-1 .td-header-top-menu-full {
border-top: none;
}
.td-magazine .td-header-style-1 .td-header-gradient::before {
height: 0;
}

Result – https://www.screencast.com/t/cyTQ1svzUF

And this is for that block (VIDEOD) title border color, it will make it black

.td_uid_6_589031fc95a90_rand .block-title {
border-color: black!important;
}

Result – https://www.screencast.com/t/zQj8RQas

Or if you want to make them all black the code is this

.block-title {
border-color: black!important;
}

Result – https://www.screencast.com/t/Tk6oWvqP

Also if you want to make the recent commnents widget title black as well use this

.widgettitle:after {
background-color: black!important;
}

Result – https://www.screencast.com/t/UJr7r06ZkPCr

If I misunderstood something please corect me, and I will try to provide other solutions.
Thanks

Post count: 200

Hey Simion C.

Thanks for answer. These changes gave me exactly these results I needed. And yeah I wanted to change line color for all of them, including widget area. Thanks a lot.

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