2

This code works on all desktops and tablets, in every browser, but for some reason I cant find, it is not working on cellphones, android or apple! I cannot even select the text on cellphones..

<div class="inner-content block-content-style-2">
<a href="index.php/fr/services-fr/moule">
<div class="icons-molding"> </div>
</a>
<h3 class="title">Conception</h3>
</div>

I tried moving the href to a couple of place, but didnt change anything, but anyways, even if it is not a link, i should be able to select the text when using a cellphone
I tried to add a href inside the h3 tag for mobile to click on it, but it is not working either.
you can try it live here: http://www.qualiplast.com
On desktop or tablet, it works just as intended, but not on any cellphone.

Thanks for helping me out.

2 Answers2

1

There is a div with an id of 'avatar-body-middle-block' that is appearing above the links on mobile, and preventing them from being clickable. Remove (or more likely hide) this div on mobile and the links will work.

rwacarter
  • 1,915
  • 1
  • 14
  • 25
0

I faced the same problem. Here's how I solved it in my case.

I tried inspecting on the 'a href' element. Turns out that some other element shows up in the developer console. After some pondering, I realized that some other div element was showing up above my link.

After reading through the css styling for the overlapping element and disabling the overlapping css command, the link started working for me. (float: none had to be deleted in my case, from an overlapping div)

Hope this helps someone else out there

Rahul Makhija
  • 381
  • 4
  • 7