Hide full_number when you are on mobile
Hide full_number when you are on mobile
![silens](https://secure.gravatar.com/avatar/e611851f50976b3be0398c1822a0b1f6/?default=https%3A%2F%2Fvanillicon.com%2Fe611851f50976b3be0398c1822a0b1f6_200.png&rating=g&size=120)
For some reason, the page is not responsive, I am trying to type the numbers when it is in mobile view but there is no way. it's wrong?
@media screen and (max-width: 767px) {
li.paginate_button.previous {
display: none;
}
li.paginate_button.next {
display: none;
}
li.paginate_button {
display: none;
}
}
This discussion has been closed.
Answers
Hi @silens ,
You don't need the
li
, try with just.paginate_button.previous
,Cheers,
Colin