-
AuthorPosts
-
May 18, 2015 at 3:11 am #275795
Good morning X team,
I have some problems with the scalability of my revolution slider menu buttons.
On the homepage of our website http://hebjijdevibe.com/ you can see i used the X theme transparent buttons in the revolution slider and it looks awesome if you ask me :).
However, when you watch in on a smaller screen, or mobile, it overlaps the buttons. I can not find out how to fix this.
What can I do to solve this problem?
May 18, 2015 at 3:38 am #275805Hi there,
Would you share HTML code you use to create these buttons?
Thanks.
May 18, 2015 at 4:27 am #275829Thanks for the quick reply.
This is the HTLM code:
[button class=”mybutton” type=”transparent” shape=”square” size=”large” href=”http://hebjijdevibe.com/over-vibe-group/” title=”Example”]Over Vibe Group[/button]
Thnx.
May 18, 2015 at 5:43 am #275876Hi there,
Thanks for writing in!
The buttons are set to positioned absolute in the slider, that’s the reason it overlaps on smaller screens. You may need to reduce the size of the buttons on specific screen size using the CSS media queries. Please review this article for more details: http://www.themepunch.com/faq/increase-size-of-text-on-mobile/.
Thanks!
May 18, 2015 at 9:28 am #276070Thank you very much for the responce and the link. I read the page and tried to find out how i could transform the scale up into scale down, but my coding skills are letting me down.
Can you please help me a bit or is that outiside of your support? Thnx
May 18, 2015 at 12:16 pm #276182Hi There,
We believe that it is outside of our support however we could give it a try.
Would you mind sharing us your admin credential so we could take a closer look on your setup.
Thanks. Don’t forget to set it as private reply.
May 19, 2015 at 1:29 am #276639This reply has been marked as private.May 19, 2015 at 6:40 am #276805Hi there,
Thanks for the logins!
Please try adding following CSS code under Custom > CSS in the Customizer:
@media (min-width: 768px) and (max-width: 1024px) { .tp-caption .x-btn { padding: 5px 10px 5px; font-size: 12px; } }
Further customizations from here would be getting into custom development, which is outside the scope of support we can offer. If you need more in depth changes, you may wish to consult with a developer. X is quite extensible with child themes, so there are plenty of possibilities. Thanks for understanding.
May 21, 2015 at 2:27 am #278494Thank you for the trouble, to bad it did not work though.
May 21, 2015 at 2:51 am #278517Please add !important like
@media (min-width: 768px) and (max-width: 1024px) { .tp-caption .x-btn { padding: 5px 10px 5px !important; font-size: 12px !important; } }
Please clear your cache and browser history before checking.
Thanks.
-
AuthorPosts