I have developed my portfolio website using a sample grid-based bootstrap template.
After coding, I have tried testing the hyperlinks on the mobile device. But the links does not function on the mobile display.
I attempted some suggested solutions found online. But no luck so far. Can anybody help me find the issue? Please.
Portfolio link: https://pruthvirajn.github.io/
Page with problem: Contact page (right-top menu option in the home page)
Links not functioning: twitter button, google+ button and rest of the hyperlinks in the portfolio.
2
Answers
As you can see below,
col-lg-12 text-center
is covering the links, so when you try to click the link, you are actually clicking the container for theh2.project-title
.To fix this, add this CSS:
This allows the user to click through the container and on the links. More info on pointer-events.
or:
This makes the container only as tall as the title, allowing you to click the things.
You are using Bootstrap so you can use a class to centralize its link by adding a class, hope it will work
<a target="_blank" href="https://twitter.com/PruthvirajNGS" class="btn-social btn-outline text-center"><i class="fa fa-fw fa-twitter"></i></a>