Whenever a user clicks on image-exp
, I want description-exp
to slide down while other description-exp
slides up.
I am currently using a Bootstrap template available at this link.
To demonstrate the issue, I created a JSFiddle that can be accessed here. However, I am unsure about the root cause of the problem...
Any suggestions or ideas?
Below is the code snippet:
<div class="col-md-3 wrap-image-exp" id="kaiman">
<div class="image-exp">
<img src="./img/kaiman.png" class="img-responsive logo-
experiences" alt="Kaiman">
<h3 class="logo-kaiman">Title</h3>
<h6 class="logo-kaiman">small text</h6>
</div>
</div>
<div class="col-xs-12 description-exp">
<h4>KEYWORDS: Bootstrap3, HTML5, CSS3, WordPress</h4>
<p><u>Kaiman</u> is the merging of a communication consulting agency and an ESN. It brings together several departments
(K-Up, K-Service, and K-Communication) providing a wide range
of solutions to its clients.
</p>
</div>
CSS Styles:
.description-exp{
background: #F2F2F2;
padding: 20px;
border: solid 3px #223645;
border-radius: 3px;
display: none;
}