• hello all,

    this plugin is great but its not working for me because i have a few additional field for users to key in. Since the additional fields are quite a few, i expect the ajax registration modal to have a vertical scrollbar so user can scroll down to key in all the required additional fields.

    what happen now, the ajax modal box doesn’t have any scrollbar. If i try to scroll down, the ajax modal box is not scrolling, the web page at the back is scrolling instead.

    anyone knows how to make the scrollbar appear?

    http://wordpress.org/extend/plugins/login-with-ajax/

Viewing 7 replies - 1 through 7 (of 7 total)
  • Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    try adding this to line 30 in between the {} in widgets/widget.css:
    overflow:auto;

    Thread Starter dzulfriday

    (@dzulfriday)

    its not working
    i believe you mean this id?
    #LoginWithAjax_Register.default

    Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    Yes, you’re right, I didn’t test the previous one, but this one certainly does work. I recommend you adding this to either your custom lwa template stylesheet, or otherwise just as easily can go in your theme’s style.css

    #LoginWithAjax_Register form { overflow:auto; height:400px; }

    You may want to adjust the height depending on your site

    Thread Starter dzulfriday

    (@dzulfriday)

    it works. since i am using register plus redux, the password strength indicator is not working in the ajax registration?

    Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    had a look, looks to me like the JS for the password indicator isn’t being loaded, probably because it’s intended to work with the normal wp register page only.

    I’ve added their plugin tag to this topic. Maybe the rpr plugin devs could have a look and see?

    Hi Marcus,

    I’m a newbie and have a similar problem with the registration form on my site invertedcircle.org I’m using simple modal login with registration plus redux plugin. Everything is working fine except the registration form exceeds the pop-up page due to additional custom fields and it doesn’t show a scrollbar. Could u plz tell me exactly where to put this:

    #LoginWithAjax_Register form { overflow:auto; height:400px; }

    in my theme’s style.css. Your help will be of great value.

    Plugin Author Marcus (aka @msykes)

    (@netweblogic)

    anywhere will do, you may want to change it to

    #LoginWithAjax_Register form { overflow:auto; height:400px !important; }

Viewing 7 replies - 1 through 7 (of 7 total)
  • The topic ‘[Plugin: Login With Ajax] Scrollbar not appear’ is closed to new replies.