Is it possible to toggle the display property of an element instead of the visibility property?We've built a questionnaire with multiple yes/no questions and a result page. The result page contains a list of links. Each question is associated with a link. For each question it will either show or hide that link, using actionShow and actionHide.The problem is, actionShow and actionHide apparently toggle visibility, not display, so the hidden links still take up space on the page. For example:Link1Link2Link3Link5Link8We'd like to have the list without the white space.