Max Visna
Max Visna

Reputation: 41

Links are not working, but when I inspect them they are

Hi stackoverflow community. I have a strange issue with the links on my website. They are not clickable on the browser, however, when I inspect them I can click on them. Did anyone experienced the same problem and can share the solution for that?

HTML:

<p>jbfhjdbsfkbvk<a class="brexit" href="Articles_1.html">... [Continue to the full article]</a></p>

HTML of one section:

<div class="list_of_reviews_1">
<ul style="list-style-type:none">
<li>What will happen to Brittish travelers when Brexit finaly happens</li>
</ul>
<img src="for left column.jpg" height="150" width="150" alt="What will happen to Brittish travelers when Brexit finaly happens"/>
<p>kjbngfugjdbgidbgkdsbgsdfbgkjdbgs<a class="brexit" href="Articles_1.html">... [Continue to the full article]</a></p>
</div>

Upvotes: 0

Views: 854

Answers (1)

Masroor_Shah
Masroor_Shah

Reputation: 313

add some css put image or p tag and assign index they possibly overlap

p {
 
    z-index: 5;

}

Upvotes: 2

Related Questions