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

    Hi there,

    I have been trying to setup my contact form. I went through the forum and installed contact form 7, but it still doesnt work. I asked my server provider as well, but they said I need to send them the URL address.

    Also I wanted to ask how I can change the colour of the pricing table to Gold, Silver, Bronze. http://www.highspeedworx.com
    I have two tables, and the second tables rows don’t match up height wise with that of the “description column”.

    Please help?

    Thank you. Cheers,

    Nic

    #303316

    Hey nicdivi2014!

    1) Did you try to install the smtp plugin: https://wordpress.org/plugins/webriti-smtp-mail/ – if even contact form 7 doesn’t work properly your server probably can’t use the php mail() function to send the emails. The smtp plugin will use your mail/smtp server for the sending process and the php mail() function is not required in this case.

    2) You can change the color with css code – for the first column (silver) use this code:

    
    .alternate_color .pricing-table li.avia-pricing-row:nth-child(0), .alternate_color .pricing-table li.avia-heading-row:nth-child(0){
    background-color: #C0C0C0;
    }
    

    For the second column:

    
    .alternate_color .pricing-table li.avia-pricing-row:nth-child(1), .alternate_color .pricing-table li.avia-heading-row:nth-child(1){
    background-color: #ffee38;
    }
    

    and the third column:

    
    .alternate_color .pricing-table li.avia-pricing-row:nth-child(2), .alternate_color .pricing-table li.avia-heading-row:nth-child(2){
    background-color: #8C7853;
    }
    

    Obviously you can use different color values if you don’t like the colors I used for the sample code :)

    Regards,
    Peter

    #304059

    Hi there,

    thank you for the help. I managed to get the contact form to work…turns out I just needed to update my php on my server. works like a charm now.

    I am having big problems with the tables though: http://www.highspeedworx.com/phantom-flex-4k-packages/

    I need the description column to be on the same height as the pricing column rows. I also cannot change the colours for some reason. Also instead of the $ sign, I would like to have written ZAR.

    Any suggestions would be of great appreciation.

    Thank you. Cheers,
    Nic

    #304121

    Hey Nic!

    Try adding this code to the Quick CSS:

    @media only screen and (min-width: 767px) {
        .avia-table li { min-height: 190px }
    }

    Cheers! 
    Josue

    #304545
    This reply has been marked as private.
    #305380
    #308467
    This reply has been marked as private.
    #308510

    Hi Nic,

    Try adding this:

    .pricing-table li p {
        margin: 0 !important;
    }

    Best regards,
    Josue

Viewing 8 posts - 1 through 8 (of 8 total)
  • You must be logged in to reply to this topic.