0
I am making a service area of my site(wordpress), and would like to add only images in it and when the user hovers over these images that image change to another so with the name of the service that was that first...
I would like to know what it takes to do this... whether it is done by HTML, or whether it will be by css or javascript...
Thanks in advance.
So far so good is the code.
<div class="servicos">
<div class="container">
<div class="row">
<div class="col-md-3 col-lg-3">
<img class = "img-responsive " src = " <?php bloginfo('template_directory' ); ?> /assets/images/logobeta.png">
</div>
<div class="col-md-3 col-lg-3">
<img class = "img-responsive " src = " <?php bloginfo('template_directory' ); ?> /assets/images/logobeta.png">
</div>
<div class="col-md-3 col-lg-3">
<img class = "img-responsive " src = " <?php bloginfo('template_directory' ); ?> /assets/images/logobeta.png">
</div>
<div class="col-md-3 col-lg-3">
<img class = "img-responsive " src = " <?php bloginfo('template_directory' ); ?> /assets/images/logobeta.png">
</div>
</div>
</div>
</div>