treehouse : what would you like to learn today?
Web Design Web Development iOS Development

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).
    Comment by Greysquirrel March 22 permalink
  • 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;
    Comment by Greysquirrel March 9 permalink
  • table

    [deleted]
    Comment by Greysquirrel February 26 permalink
  • 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
    Comment by Greysquirrel February 26 permalink
  • 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; }
    Comment by Greysquirrel February 26 permalink
  • 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 }
    Comment by Greysquirrel January 24 permalink