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

CSS

Brandon Brigham
Brandon Brigham
3,716 Points

How to remove an element from website

Hi,

I have been looking forever for how to manipulate the left-side black-colored sidebar on the following website I'm working on:

http://villa-terrazza.com/2014NewSite

I am using the 2014 theme and cannot figure out which class this black sidebar is tied to.

Any help would be very appreciated!

shahardekel
shahardekel
20,306 Points

On line 3610 in your style.css there's a pseudo element selector: .site:before { background-color: #000; ... }

Note that it is inside a media query: @media screen and (min-width: 1008px) { ... }

so the styles and color may vary on different screen sizes

1 Answer