Hy
I'm quite new to jQuery and I can't solve this problem:
I have a #content container with 2 infoboxes inside. When clicking on the infobuttons they become visible (via toggle jQuery function).
My problem is, that the size of #content does not "resize", I mean, it does not get bigger, so the infoboxes overlap with the next container.
How can I prevent it? Is there a function which resizes containers depending on the visibility of the content?
EDIT:
Sorry for being not precice, here the code:
<div id="content">
. . .
<script type="text/javascript">
$(function(){
$('#info_icon').on('click mouseover',(function(){
$('#info_text').toggle("slow");
}));
});
</script>
<script type="text/javascript">
$(function(){
$('#project_icon').on('click mouseover',(function(){
$('#project_text').toggle("slow");
}));
});
</script>
<div id="info_text" style="display:none;">
...
</div>
<div id="project_text" style="display: none;">
...
</div>
</div>
#content {
background-color: #b12a28;
padding-left: 10%;
padding-top: 3%;
height: auto;
}
#info_text {
background-color: #FFF;
opacity: 0.8;
float: left;
height: 40%;
width: 25%;
padding: 10px;
margin-right: 3%;
margin-bottom: 10%;
}
#project_text {
background-color: #FFF;
opacity: 0.8;
float: left;
height: 40%;
width: 25%;
padding: 10px;
clear: none;
}