>If I'm setting the visibility for a div (display:none or display:block >in this case), do also need to set visibility for anything inside the >div.
Nope - you only need to do it to the parent item. Note, you're not setting "visibility", you're setting "display". This isn't being pedantic; there is a CSS property called visibility which works differently to the display property, so it could cause confusion mixing up the terms. (Visibility controls whether something can be seen or not, whilst display controls whether something is there or not - the difference being that an invisible object still affects other objects even though you can't see it, but with display:none it is as if the object has been teleported away to live with goats.) ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~| Adobe® ColdFusion® 8 software 8 is the most important and dramatic release to date Get the Free Trial http://ad.doubleclick.net/clk;207172674;29440083;f Archive: http://www.houseoffusion.com/groups/cf-talk/message.cfm/messageid:313732 Subscription: http://www.houseoffusion.com/groups/cf-talk/subscribe.cfm Unsubscribe: http://www.houseoffusion.com/cf_lists/unsubscribe.cfm?user=89.70.4

