Hello,
I am having problems displaying the tables in accordion toggle.
There is already a thread but closed. Since i couldnt post there i am opening a new one.
I tried the solution posted there, but it doesnt work.
.single_toggle, .toggle_content {
overflow: visible !important;
}
Instead of adding a scrollbar at the end of the table, it adds one on the right side of the page.
I am using latest version of WordPress and Enfold.
Thank you in advance.
Webpage here
Hi netinfoplc!
Please try to insert this code into the quick css field
.toggle_content {
overflow: scroll;
}
Best regards,
Peter
Thank you it works perfectly!!!!!
one more thing,
why do the scrollbars on the right and bottom appear even when viewing in desktop?
shouldnt they only appear on mobiles?
Hey!
You can try to use this code instead
.toggle_content {
overflow: auto;
}
and if it doesn’t work use a media query to show the scroll bars on smaller screens only:
@media only screen and (max-width: 767px){
.toggle_content {
overflow: scroll;
}
}
Best regards,
Peter
perfect…the first worked fine!
Thank you for all the help.
Hey!
Great :)
Best regards,
Peter