How to get rid of unwanted Header Line?

On all the pages except Home page, I have the strange occurrence of a White Band with the Page Title listed in addition to the normal Page Title.
This code recommended by another thread did not solve the problem.
.x-navbar {
border-bottom: 0;
box-shadow: none;
}

Please suggest how I get rid of this band.

Hello Loren,

Thanks for writing in!

If you would like to remove white background color, please use following CSS under Pro > Theme Options > CSS:

.x-breadcrumb-wrap {
    background-color: transparent;
}

1- I have found the proper CSS code selector using the Chrome browser Developer Toolbar: https://www.youtube.com/watch?v=wcFnnxfA70g

2- For the CSS code itself, I suggest that you get started with this tutorial: https://www.youtube.com/watch?v=yfoY53QXEnI

Thanks.

Since this bar appears to be caused by breadcrumbs, how do we disable breadcrumbs?
Making that extra header line transparent was not the best solution.

Another post said “Breadcrumbs can be disabled from X > Theme Options > Header > Miscellaneous > Breadcrumbs.” I tried turning it Off here, but that did not get rid of the breadcrumb header, but the following code did.
.x-breadcrumb-wrap {
display: none;
}
No further response is required.
Thank you.

You’re most welcome.
It’s good to know that you issue has been resolved.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.