Click to See Complete Forum and Search --> : visibility issue


ixxalnxxi
07-01-2008, 03:44 AM
view here (http://estamos-aqui.com/aboutus.php)

the problem i'm having is that the hidden content is still actually there and takes the space, i'd like for it to not take the space. before what i was doing was 'margin:-9999px' and setting 'margin:0' once clicked, but that was giving me strange errors. any suggestions?

Mr. E. Cryptic
07-01-2008, 03:51 AM
this (http://www.w3schools.com/css/pr_class_display.asp) might help

ixxalnxxi
07-01-2008, 04:47 AM
woah, that was exactly it. thank you for the help.

WebJoel
07-01-2008, 07:37 AM
... what i was doing was 'margin:-9999px' and setting 'margin:0' once clicked, but that was giving me strange errors. any suggestions? Yes, "display:none;" is easier and better possibly, a "margin:-9999px;" means that TOP, RIGHT, BOTTOM and LEFT are ALL "-9999px;" removed from static.

You probably meant to say "margin-left;"-9999px;" which moves the content in that direction, et~al, which would stop....giving me strange errors. :)