Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #464307

    I would like to make my contact form transparent like it is on your one page portfolio demo. I would imagine this is a feature in the theme but I can’t seem to find a way to do this. I selected light transparent but it didn’t help. Can you please let me know how to achieve this? Thank you!

    #464753

    Hey djshortkut!

    Please try the following in Quick CSS under Enfold–>General Styling:

    .page-id-6920 #avia_email_1 {
    background-color: transparent !important;
    }

    Best regards,
    Rikard

    #464756

    Thanks Rikard but that didn’t work.

    #465002

    Hey!

    You have following code in your custom CSS code

    #top .avia_ajax_form .text_input, #top .avia_ajax_form .select, #top .avia_ajax_form .text_area {
      border: none!important;
      background-color: #f5f5f5!important;
    }

    Please change it to following

    #top .avia_ajax_form .text_input, #top .avia_ajax_form .select, #top .avia_ajax_form .text_area {
      border: none!important;
      background-color: #f5f5f5;
    }

    Regards,
    Yigit

    #465150

    Thanks Yigit. Unfortunately changing this code doesn’t work. It screws up my other contact forms and removes the box completely from the contact form. Is there any way I can modify only this contact form so that the email box and sign up box are in the light transparent style with a 3 px white border like your demo?

    #465860

    Hey!

    Please try this instead:

    #top div .av-light-form input[type='text'] {
      border: 3px solid #fff !important;
      background-color: rgba(255,255,255,.5) !important;
    }

    Regards,
    Ismael

    #465910

    Thank you Ismael, getting closer! How can I target the “sign up” button for this contact form in the same way? I only want to modify this specific button and not have it change the rest of the contact form buttons so that it has a 3px white border and white text with a transparent background. On hover I still want it to act like the other buttons so when the button is hovered the background color is #018db0 and the text is white. I added a custom class of transparent-contact-form if that helps target this button. Thanks!

    #466296

    Hey!

    You can use this for the sign up button:

    .transparent-contact-form input[value="SIGN UP"] {
      border: 3px solid #fff !important;
      color: #fff !important;
    }

    Cheers!
    Ismael

    #466562

    Thanks Ismael, so close! The button looks great. Upon hover the button works correctly except I want the 3px white border for the button to be #018db0 on hover as well. Everything else looks great. Thanks!

    #466594

    Never mind, I figured it out. You can close this thread.

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Transparent Contact Form’ is closed to new replies.