Greysquirrel
-
.htacces and hidden files in OSX
If you're a Mac user google TinkerTool. It's a free application which can reveal hidden files with a couple of mouse clicks. And it's not scary like the Terminal (though it might just be me that thinks that).
-
sidebar hover trouble
You need to add the extra 3px of padding-left to the li:hover not to the a:hover. Remove the padding-left: 8px from the ul#sidebar li a:hover declaration. And in the ul#sidebar li:hover declaration change the width to 197px and add padding-left:3px;
-
table
Border-collapse seems to not play nicely with Border-radius. I found this tutorial which may help: http://www.red-team-design.com/practical-css3-tables-with-rounded-corners
-
table
If I've understood the question properly you need to collapse the borders on your table. Add the following: table#asd{ border-collapse:collapse; }
-
Sub-Menu Highlight Color Difficulties
You're probably not being specific enough with your selector. Adding #menubar in front of the selector should solve your problem. #menubar .feelgoodcandy a:hover { color: #E3C605 }