Christian Torres
Christian Torres

Reputation: 303

How to remove space from an empty header

In the homepage of dollarcryptos.com (screenshot provided), I can't remove the empty header with two gray horizontal lines.

I've right clicked the source and if I am correct I believe this is the HTML code:

<h4 class="td-block-title"><span></span></h4>

I am not sure if that is correct though.

What I want to do is delete those horizontal lines and move up the price boxes so it fits in nicely.

Info on what's used:

home page
(source: dollarcryptos.com)

I've tried:

.sidebar.sidebar-right {
  border: none;
}
.widget {
  border: none;
}

in the additional CSS section of the customize option on Wordpress

Upvotes: 0

Views: 90

Answers (1)

Uri Chachick
Uri Chachick

Reputation: 432

do

.home .ccpwp_Widget h4.td-block-title {
    display: none;
}

Upvotes: 2

Related Questions