• Resolved AnnieBVT

    (@anniebvt)


    Greetings, the log in form to register for an event is not mobile responsive, in other words, the login form is placed to the right of an event registration form, but does not move to a single column view on a tablet or phone. Is there something I am missing in terms of media queries/CSS for viewing the registration with login form responsive?

    Thanks.

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

Viewing 2 replies - 1 through 2 (of 2 total)
  • Plugin Support angelo_nwl

    (@angelo_nwl)

    At the moment you need custom CSS styling to make this work

    e.g.

    
    @media</a> (max-width: 768px) {
    
        .em-booking-form-details {
            float: none;
            display: block;
            width: 100%;
        }
    
        .em-booking-login {
            float: none;
            margin: 30px 0;
            display: block;
            width: 100%;
        }
    
    }
    Thread Starter AnnieBVT

    (@anniebvt)

    Hi Angelo, Thank you for sending the media query code to move the login form. However, after I added it to the WP Customizer, the login form is still not responsive. Is there somewhere in the events manager plugin this code needs to be added, and not the Customizer?

    Also, in your code there is an error: @media should be @media screen I believe.

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Login form not responsive’ is closed to new replies.