Viewing 13 posts - 1 through 13 (of 13 total)
  • Author
    Posts
  • #791223

    Hi,

    How can I change background color of table ? and How can I add custom CSS.

    Thank you

    #791225

    Hey jinchaiw,

    Please provide a link to the page/site in question.

    Best regards,
    Jordan Shannon

    #795769

    Hi Jordan,

    Sorry for my late reply.

    My site: http://www.zp10100.tld.122.155.17.98.no-domain.name/products/

    I need to change the table to no background and white border

    Thank you and Best regards,

    Jinchai

    #795797

    Hi,
    Add the following to quick css:

    table, .main_color table caption, .main_color tr:nth-child(even), .main_color .pricing-table>li:nth-child(even), .main_color tr:nth-child(odd){ background-color: transparent !important; color:white!important; }
    
    .avia-data-table-wrap.avia_scrollable_table{
    border:1px solid #fff!important;
    }

    Let me know if this works for you.

    Best regards,
    Jordan Shannon

    #797499

    Hi,

    Thank you it work !!

    I need some help on http://www.zp10100.tld.122.155.17.98.no-domain.name/products/

    1. Every tables are the same format by quick css ? Can I change border color ? I will create 3 tables for comparing the material but I need to change the 2nd table border to pink and maintain 1st and 3rd table to white.

    2. When I open by smart phone, I need to show photo after text but we have a paragraph show text before text. (https://www.dropbox.com/s/tumoqa8zjzdkhke/Capture.JPG?dl=0)

    Thank you and Best Regards,
    Jinchai

    #797649

    Hi,

    1. You can specify CSS for the second grid that contains content. Please try this code when you have already put a table:

    
    .avia-builder-el-15 .avia-data-table-wrap {border: 1px solid #ed3c98;}
    

    2. You can set the mobile behavior for grids. You can choose between Default: Each cell is displayed on its own, or Cells appear beside each other, just like on big screens.

    If you choose the default, the elements stack on top of each other, and because your second row has the text before the image, that’s how it will show in mobile as well. What you can do is create an extra grid row that has the image before the text, and will only be visible on mobile. Give it a Section ID like mobile-only, and give your original second a Section ID like desktop-only. Then use this code in Quick CSS:

    @media only screen and (max-width: 768px) {
       .desktop-only {display: none !important }
    }
    @media only screen and (min-width: 768px) {
       .mobile-only {display: none !important }
    }

    This way, your desktop-only grid row is hidden for screens smaller than 768px, and your mobile-only grid row is hidden for bigger screens.

    I hope that helps!

    Best regards,
    Sarah

    #803542

    Hi,

    It always show in mobile and desktop.

    I don’t know about code so much. Could you help me check the pictures. What’s I miss.

    https://drive.google.com/open?id=0B33ub593rSuzdjY5aGl0dGNTUGc

    https://drive.google.com/file/d/0B33ub593rSuzUFVIWE1WY25QOUU/view

    Thank you

    #804018

    Hi,

    That should be it. Is it not working?

    Best regards,
    Jordan Shannon

    #804450

    Hi Jordan,

    Yes, it’s not work.

    Best Regards,
    Jinchai

    #804452

    Hi,

    Link: Website

    Thank you

    #805112

    Hi,

    Please provide admin info. If this is dealing with media queries, I will need a closer look.

    Best regards,
    Jordan Shannon

    #806286

    Hi

    Thank you. I sent the info in private.

    Best Regards,

    Jinchai

    #806382

    Hey jinchaiw,

    Apologies, this was closed accidentally. I am still working on this.

    Best regards,
    Jordan Shannon

Viewing 13 posts - 1 through 13 (of 13 total)
  • The topic ‘Quick Css, background color’ is closed to new replies.