I'm doing a service area of my site (wordpress), and I would like to add only images in it and when the user hover over these images that image change to another one so with the name of the service that was the first one ...
I would like to know what is required to do this ... if you give it to do by HTML, or if it will be by css or javascript ...
Thank you in advance.
For the time being this 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>