As previously announced via banners and our newsletters, support is no longer available through this platform.

For easier navigation, you can still click on "Submit a Ticket" here, choose the appropriate category, and you'll be redirected to the correct support channel for your plugin.

You can still access your previous tickets and browse public tickets, but please note that responding to tickets is no longer possible.

Paid customers: Please log in to your store account for support.

Pre-purchase questions: Use the support widget in the bottom-right corner of our websites:
https://wpamelia.com
https://wpdatatables.com
https://wpreportbuilder.com

Okay
  Public Ticket #2812021
Responsive Product Table
Closed

Comments

  • Pascal Block started the conversation

    Hi there,

    I really like the clean look of your responsive products table and wanted to built a similar looking table. I was wondering if you could share how you achieved the look? Did you use any CSS for it?

    Thanks &

    Best regards

    Pascal

  •  2,576
    Aleksandar replied

    Hello Pascal.

    Yes, we've added some custom CSS to that page:

    .wpdt-c .wpDataTablesWrapper table.wpDataTable .even:hover > td
    {
        background-color: #fff !important;
    }
    .wpdt-c .wpDataTablesWrapper table.wpDataTable .odd:hover > td{
        background-color: #fff !important;
    }
    @media screen and (min-width:1024px) and (max-width:1270px) {
        td.column-os,td.column-battery,td.column-price,td.column-weight,td.column-graphics,td.column-ram,
        th.column-os,th.column-battery,th.column-price,th.column-weight,th.column-graphics,th.column-ram{display:none;}
    }
    @media screen and (min-width:1270px) and (max-width:1560px) {
        td.column-os,td.column-display,td.column-battery,td.column-weight,td.column-ram,td.column-graphics,td.column-processor,td.column-harddisk,
        th.column-os,th.column-display,th.column-battery,th.column-weight,th.column-ram,th.column-graphics,th.column-processor,th.column-harddisk{display:none;}
    }
    @media screen and (min-width:1560px) and (max-width:1700px) {
        td.column-os,td.column-weight,td.column-graphics,th.column-os,th.column-weight,th.column-graphics{display:none;}
    }

    Also, the background color of the header, and it's borders have been changed to white with this CSS:

    .wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable thead th,
     .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th,
     .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th.sorting {
        border-color: #f2f2f2 !important;
    }
    .wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable.bt[data-has-header='1'] td.wpdt-header-classes,
     .wpdt-c.wpDataTablesWrapper table.wpdtSimpleTable thead th,
     .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th,
     .wpdt-c .wpDataTablesWrapper table.wpDataTable thead th.sorting {
        background-color: rgb(255,255,255) !important;
    

    Kind Regards, 

    Aleksandar Vuković
    [email protected]

    Rate my support

    wpDataTables: FAQ | Facebook | Twitter | InstagramFront-end and back-end demo | Docs

    Amelia: FAQ | Facebook | Twitter | InstagramAmelia demo sites | Docs | Discord Community

    You can try wpDataTables add-ons before purchasing on these sandbox sites:

    Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables

  • Pascal Block replied

    Hi Aleksander,

    thank you very much for your reply and sharing the custom CSS of the page!

    Best regards,

    Pascal

  •  2,576
    Aleksandar replied

    You're welcome, Pascal

    Glad I could be of service.

    If you have any further questions or issues, please feel free to open a new ticket, and we'll gladly help.

    Kind Regards, 

    Aleksandar Vuković
    [email protected]

    Rate my support

    wpDataTables: FAQ | Facebook | Twitter | InstagramFront-end and back-end demo | Docs

    Amelia: FAQ | Facebook | Twitter | InstagramAmelia demo sites | Docs | Discord Community

    You can try wpDataTables add-ons before purchasing on these sandbox sites:

    Powerful Filters | Gravity Forms Integration for wpDataTables | Formidable Forms Integration for wpDataTables | Master-Detail Tables