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

RhapX

  • Firefox 3 and CSS Rollover problems

    Hello, Take out the display: block; and set that to display: inline; as they are inline and not blocked. Once you do that, add float: left; to your a elements and that should fix the problem. If not, it will set you on a path to get it working! …
    Comment by RhapX October 2008 permalink
  • CSS rollover image - USA Map

    You can always use area coordinates. http://www.w3schools.com/TAGS/tag_area.asp Best Regards, Jake
    Comment by RhapX October 2008 permalink
  • IE Help!

    Hello, To fix your double-margin issues, use display: inline; (where ever you're using margin-left). To fix some of your other issues, IE doesn't take kindly to negative values (i.e. top: -775px;). For this, you need to make sure you�…
    Comment by RhapX October 2008 permalink
  • Problems with simple JQuery functions (hide/show)

    Make sure you're loading the jQuery functions you're wanting to use. $(document).ready(function() { $(\"#boxContent\").hide(); }) This should be how all of your stuff should look. Basically it shows that jQuery is to be l…
    Comment by RhapX October 2008 permalink