Viewing 14 posts - 1 through 14 (of 14 total)
  • Author
    Posts
  • #839636

    Hello!

    I’m not finding where can I change the colors of the pricing tables.

    Specially, I would like to have each column with different colors.

    How can I do that?

    Thanks in advance!

    Newton

    #839762

    Hey newtonlinchen,

    You will need custom CSS to achieve that, please post a link to your site and point out the changes you would like to make.

    Best regards,
    Rikard

    #839899

    Hello,

    This is the website: http://www.linchen.com.br/curso-setups-robo/

    In the bottom you can see the two column pricing table.

    I would need two things:

    1. Change the height and width of them (they are looking like boxes right now, not columns);

    2. Change their color (specially, I would need to have different collors for each one of them, so I can manage to make a special case for the discount one).

    That’s it. :)

    #840022

    Hi!

    1. For this, can you send us a mockup of what you would like the tables to look like?

    2. I’ve made an example code for you for changing the colors of the discount column. I’ve made the colors very obvious (and quite ugly right now) so that you can easily see how each line of code affects the column. Please change the colors to suit your preference! Please try this in quick CSS:

    .main_color > div:nthchild(2) .pricing-table li.avia-heading-row {background-color: red!important; }
    .main_color > div:nthchild(2) .pricing-table li.avia-heading-row .pricing-extra {background-color: darkred!important; }
    .main_color > div:nthchild(2) .pricing-table li.avia-pricing-row {background-color: green!important; color: black!important;}
    .main_color > div:nthchild(2) .pricing-table>li.avia-button-row {background-color:gold!important;}
    

    If you would like to control the first column, please make a copy of this code then replace div:nthchild(2) with div:firstchild.

    I hope that was clear and helpful. Please let us know if you have other questions. We look forward to helping you with #1 as well.

    Best regards,
    Sarah

    #840086

    Hello,

    I did what you asked, but nothing happened.

    Newton.

    #840892

    Hi Newton,

    Here is the code you can put in Enfold > General Styling > Quick Css,  if it does not work, put into themes/enfold/css/custom.css

    
    .main_color .pricing-table li.avia-heading-row, 
    .main_color .pricing-table li.avia-heading-row .pricing-extra {
        background-color: #ccc !important;
        color: #ffffff;
        border-color: #666 !important;
    }
    .main_color .pricing-table li.avia-pricing-row {
        background-color: #F44336 !important;
        color: #ffffff;
        border-color: #FF5722 !important;
    }
    .main_color .pricing-table>li.avia-button-row {
       background-color: green !important;
       border-color: #FF5722 !important;
    }
    

    If you need further assistance please let us know.

    Best regards,
    Victoria

    #842086

    Hello,

    This last code you sent me both did and didn’t work.

    It did work: It really changed the colors of the pricing table.

    It didn’t work: The main point was to be able to have different colors for the different columns, and this point the code didn’t provide.

    How can I have both?

    Newton

    #842679

    Posting again:

    Hello,

    This last code you sent me both did and didn’t work.

    It did work: It really changed the colors of the pricing table.

    It didn’t work: The main point was to be able to have different colors for the different columns, and this point the code didn’t provide.

    How can I have both?

    Newton

    #843435

    Hi,

    Please use css child selectors. Example:

    .main_color .pricing-table-wrap:nth-child(1) .pricing-table li.avia-pricing-row {
        background-color: #ffffff !important;
        color: #55606e;
        border-color: #ccc !important;
    }

    The code above will only be applied to the first table because of the “nth-child(1)” selector.

    // https://www.w3schools.com/cssref/sel_nth-child.asp

    Best regards,
    Ismael

    #889931

    Guys,

    I didn’t quite accomplished what I wanted here.

    Here’s the website link to the pricing table:

    I see several issues here:

    1. I would like to change the color in the columns. Where they display the color blue, I would like to change, so the columns 1 and 3 (left and right) are with the same color (gray) and the middle column (column 2) would have some other color (perhaps orange).
    2. I would need to have all the tables with the same size, below the pricing row. As the text for the columns may differ, some with extra length, now they are not aligned, so that the information on the leftmost column it’s not easy to relate to the other columns.
    3. I would like to get rid of the dashed line. Only of the first two on the top, if possible. If not, I would like to get rid of all dashed lines.

    Regards

    Newton

    #891479

    Hi,

    Could you please provide a screenshot of the table layout or design? Use imgur or dropbox.

    Best regards,
    Ismael

    #891611

    You can close this thread, as I opened another one since it was taking to long. Victoria is helping me in the other one. Thanks.

    #891984

    Hello (and Merry X-mas!)

    The support here indicates that the last comment was by Victoria, but I couldn’t find it.

    But you can close this thread and we continue in the other “PRICING TABLES Configuration”.

    Regards

    Newton

    #892005

    Hi Newton,

    Sure, we will be closing this thread. Merry Christmas :)

    Best regards,
    Nikko

Viewing 14 posts - 1 through 14 (of 14 total)
  • The topic ‘PRICING TABLE’ is closed to new replies.