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! …
-
CSS rollover image - USA Map
You can always use area coordinates. http://www.w3schools.com/TAGS/tag_area.asp Best Regards, Jake
-
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…