Re: [css-d] strange indentation on menu bar

2012-07-05 Thread Michelle Carlough
Hi, I checked out your page in Firebug. It looks like there are two lines that are creating that indentation. 1) On 960_24_col.css line 1 - There's a margin-left:5px ... you can change it to 0px 2) Line 226 - there's a 950px width... if you change that to 960px that seems to fix the problem. N

Re: [css-d] Button creation

2012-06-27 Thread Michelle Carlough
I would recomend using a combination of the border and box-shadow attributes. That way, you will not have to worry if the size of the button changes. Here's a quick example: .button ( border:2px solid white; box-shadow:0 0 3px 0 red; background:red; color:white;) Then the red should be on the ou