Viewing 8 posts - 1 through 8 (of 8 total)
  • Author
    Posts
  • #1312564

    Hi,

    I have a tabular data table which is scrollable inside of a tab section . On desktop it looks great but on mobile it does not render properly. Please help

    #1313224

    Hey navindesigns,
    Thank you for your patience, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 767px) {
    .responsive #top #wrap_all .av-layout-tab-inner > .container {
        width: 100%;
        max-width: 100%;
    }
    .responsive #top #wrap_all .av-layout-tab-inner > .container > .avia_scrollable_table .avia-table {
        width: 100%;
    }
    .responsive #top #wrap_all .av-layout-tab-inner > .container > .avia_scrollable_table .avia-data-table > thead > tr > th, 
    .responsive #top #wrap_all .av-layout-tab-inner > .container > .avia_scrollable_table .avia-data-table > tbody > tr > th, 
    .responsive #top #wrap_all .av-layout-tab-inner > .container > .avia_scrollable_table .avia-data-table > tfoot > tr > th, 
    .responsive #top #wrap_all .av-layout-tab-inner > .container > .avia_scrollable_table .avia-data-table > thead > tr > td, 
    .responsive #top #wrap_all .av-layout-tab-inner > .container > .avia_scrollable_table .avia-data-table > tbody > tr > td, 
    .responsive #top #wrap_all .av-layout-tab-inner > .container > .avia_scrollable_table .avia-data-table > tfoot > tr > td {
        white-space: normal;
    }
    #top #wrap_all .av-layout-tab-inner > .container > .avia_scrollable_table > .avia-table tr th, 
    #top #wrap_all .av-layout-tab-inner > .container > .avia_scrollable_table > .avia-table tr td, 
    #top #wrap_all .av-layout-tab-inner > .container > .avia_scrollable_table > .avia-table tr {
        padding: 5px;
    }
    }

    After applying the css, please clear your browser cache and check.

    Best regards,
    Mike

    #1313356

    Thank you. that worked really well
    the only issue i have now is the tab header titles (HARDWARE and SOFTWARE) are now overlapping each other
    screenshot – https://ibb.co/LJYV1hB

    how can i fix this?

    • This reply was modified 3 years, 4 months ago by navindesigns.
    #1313414

    Hi,
    Thanks for the feedback, please try this code in the General Styling > Quick CSS field or in the WordPress > Customize > Additional CSS field:

    @media only screen and (max-width: 767px) { 
    #top #wrap_all .av-tab-section-tab-title-container .av-section-tab-title {
        width: 50% !important;
    }
    #top #wrap_all .av-tab-section-tab-title-container .av-section-tab-title .av-tab-arrow-container {
    	margin: auto;
    }
    }

    After applying the css, please clear your browser cache and check.
    This is the expected results at 425px:
    2021-07-30_001.png

    Best regards,
    Mike

    #1314433

    This looks great. thanks

    One last thing, how can I get the white arrow be aligned centered under the title text?

    screenshot – https://ibb.co/cvV8gkS

    thanks for your amazing help thus far

    #1314618

    Hi,
    Glad this is helping, please try this css for the arrow:

    @media only screen and (min-width: 767px) { 
    	#top #wrap_all .av-tab-arrow-container {
        margin: auto;
    	}
    }

    Best regards,
    Mike

    #1314691

    this is great. thank you so much for all your amazing help. you can close this ticket now

    have a great day

    #1314795

    Hi,
    Glad we were able to help, if you have any further questions please create a new thread and we will gladly try to help you. Thank you for using Enfold, have a great day.

    Best regards,
    Mike

Viewing 8 posts - 1 through 8 (of 8 total)
  • The topic ‘Tabular Data Table (scrollable) inside of a tab section on mobile’ is closed to new replies.