This is a snippet of HTML code that I have created:
<p class="backto">
<a href="http://saisukamal.com">
<img src=<?php echo base_url()."images/img_top1.gif";?>><br/>
<span style="margin-right: -5px;">Home</span></a>
</p>
<p class="backto1">
<a href="http://saisukamal.com/contactus.html">
<img src=<?php echo base_url()."images/img_top3.gif";?>><br/>
<span style="margin-right: -5px;">Contact</span></a>
</p>
Although the first link works fine, the second one does not seem to work. Removing the 'p' class makes it functional, indicating a potential override issue. Any suggestions on how to resolve this conflict?