Welcome to the Treehouse Community

Want to collaborate on code errors? Have bugs you need feedback on? Looking for an extra set of eyes on your latest project? Get support with fellow developers, designers, and programmers of all backgrounds and skill levels here with the Treehouse Community! While you're at it, check out some resources Treehouse students have shared here.

Looking to learn something new?

Treehouse offers a seven day free trial for new students. Get access to thousands of hours of content and join thousands of Treehouse students and alumni in the community today.

Start your free trial

WordPress

Learning coding
seal-mask
.a{fill-rule:evenodd;}techdegree
Learning coding
Front End Web Development Techdegree Student 9,937 Points

Can someone help me with this?

Hello everyone,

In my site www.gezondeademhaling.nl I want to get rid of the lightgrey beam with "Home" in it. This lightgrey beam appears on every page and I would like to get rid of it. Does anyone know how to do that?

Thanks in advance!

1 Answer

go into your CSS file and at the end of the file type the below:

.enigma_header_breadcrum_title {
    display: none;
}

The best way to do this is by using your dev tools in the browser and seeing what element is doing what.

if the above doesn't work, look at what body classes are being used and add that class to the css selectors.

You can also go in the code and just remove the div itself if you want.