Buttons in mobile version do not work

Asked

Viewed 30 times

1

Good morning guys, I have a finished site, it is working perfectly on the desktop, but in mobile mode, all buttons do not work, the side menu however is perfect, only the buttons of the pages that do not work. I’m using these buttons controls:

<a href="research.jsp" class="btn btn-md btn-primary">MORE</a>

CSS:

btn-primary {
  color: #ffffff;
  background-color: #3314a8;
  border-color: #250d7e;
}
.btn-primary:hover {
  color: #ffffff;
  background-color: #eb3865;
  border-color: #df0038;
  -moz-transition: 0.3s all ease;
  -o-transition: 0.3s all ease;
  -webkit-transition: 0.3s all ease;
  transition: 0.3s all ease;
}
.btn-primary:active {
  background-color: #000000;
  border-color: #000000;
}
  • Are you using any library or Javascript code? Otherwise I don’t see why this anchor doesn’t work...

  • @Sergio Yes, jquery.flexslider-min.js and jquery-min.js

  • Okay, and do you have any code from yourself or the app that interferes with those links?

  • No no, everything seems right..

No answers

Browser other questions tagged

You are not signed in. Login or sign up in order to post.