Viewing 2 posts - 1 through 2 (of 2 total)
  • Author
    Posts
  • #1374096

    Dear support team

    I use a contact form on the following website: https://my-visionguide.de/home/#contact
    On the smartphone, the email field is shown with a thicker border, (see Screenshot: https://my-visionguide.de/support/kontaktform-mobile.jpg) although I have already inserted the following script via css:

    /*Mobile View Contact Form Edge Email*/
    @media only screen and (max-width: 767px) {
    input#avia_3_1 {
    border-width: 1px !important;
    font-size: 14px !important;
    }
    }

    What can I do so that the edge of the email field is only displayed with a 1px width on the smartphone in the mobile view?

    Thank you for your edit and best regards, Diana

    #1374112

    Hey Diana,

    Thanks for contacting us!

    I added following code to bottom of Quick CSS field

    
    /* Contact email field border on mobile */
    @media only screen and (max-width: 767px) { 
    #top div .av-dark-form input[type=email] { 
     border-width: 1px !important;
    }
    }
    

    Please review your website :)

    Best regards,
    Yigit

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