Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #222781

    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

    #223325

    Hi netinfoplc!

    Please try to insert this code into the quick css field

    
    .toggle_content {
    overflow: scroll;
    }
    

    Best regards,
    Peter

    #223345

    Thank you it works perfectly!!!!!

    #223358

    one more thing,

    why do the scrollbars on the right and bottom appear even when viewing in desktop?

    shouldnt they only appear on mobiles?

    screenshot

    • This reply was modified 10 years, 8 months ago by mike.rav.
    #223890

    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

    #223896

    perfect…the first worked fine!

    Thank you for all the help.

    #223903

    Hey!

    Great :)

    Best regards,
    Peter

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘Tables in Accordion Toggle’ is closed to new replies.