• Resolved chrissaibot

    (@chrissaibot)


    help with CSS to remove the gradient on the top two rows as well as where to put border-radius:0px;

    Thanks

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • Plugin Author supsystic

    (@supsysticcom)

    Hi @chrissaibot

    For this you need to open needed pricing table and at the CSS Editor this https://prntscr.com/hgsiuo replace with

    #{{table.view_id}} .ptsColHeader {
     background-color: table.params.bg_color.val; 
       border-bottom: 1px solid {{ adjBs(table.params.bg_color.val, -40) }};
    }
    #{{table.view_id}} .ptsColDesc {
     background-color: table.params.bg_color.val;
       border-top: 1px solid {{ adjBs(table.params.bg_color.val, 5) }};
    }

    and just delete

    #{{table.view_id}} .ptsCol:first-of-type .ptsColHeader {
     border-top-left-radius: 5px;
    }
    #{{table.view_id}} .ptsCol:last-of-type .ptsColHeader {
     border-top-right-radius: 5px;
    }

    Don’t forget to Save changes you made.

    Best regards,

Viewing 1 replies (of 1 total)
  • The topic ‘removing gradient from header row background’ is closed to new replies.