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

Over riding CSS in WP

Hi, I am in my WP learning adventure and I have made several CSS changes but for some reason this one will not work. It never looks different. My code is the one double spaced below. What am I missing?

Thanks!

access {

background: #222; /* Show a solid color for older browsers */
background: -moz-linear-gradient(#252525, #0a0a0a);
background: -o-linear-gradient(#252525, #0a0a0a);
background: -webkit-gradient(linear, 0% 0%, 0% 100%, from(#252525), to(#0a0a0a)); /* older webkit syntax */
background: -webkit-linear-gradient(#252525, #0a0a0a);

background: #FFFFFF;

-webkit-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
-moz-box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
box-shadow: rgba(0, 0, 0, 0.4) 0px 1px 2px;
clear: both;
display: block;
float: left;
margin: 0 auto 6px;
width: 100%;

}

2 Answers

It does change for me, since you write that you want the background equals white. so you won't notice the change because it's already white by default try to change the value to #000 you'll see it turn to black.

If you write I want width = 10px; then you write I want width = 15px;

The browser will understand your second order.

Hopefully you'll understand. I'm still learner as well.

Okay, that' weird well there must have been some other gap so I'll look into it more. Thank you Seif!