Archived topic
Button not working on mobile
1 reply · Started by Margaret on July 27, 2020
Hello,
The orange button I have near the top of the page ("Request a Free Quote") is only clickable on desktop. When I view the page on mobile, the button is no longer clickable. I can't figure out why.
This issue is happening on this page of the website only. All the other buttons on other pages are not having this issue. I've looked through my custom css and I don't seem to have anything pertaining to this page individually, so I'm not sure why it's behaving differently than the others.
Hi there,
you should report the issue to the Visual Composer developers.
On mobile the sidebar container column is overlaying the main content column.
You can fix it with this CSS:
@media (max-width: 768px) {
.vc_column_container {
float: none !important;
}
}
But that may effect other layouts - so best to find out why it is doing it.