BuddyDev

Search

[Resolved] Need help with ajax registration

  • Participant
    Level: Initiated
    Posts: 2
    xander on #20288

    Hi,

    New designer here and love the theme but I am having an issue wit the ajax plugin. The background is smaller than the fields and I am unable to fix it, any help would be greatly appreciated. Also while I am asking, what would be the best way to make the registration modal one column? Thanks!

    I have linked a photo of the modal.

    https://imgur.com/a/QkcUW6g

  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #20290

    Hi,
    Welcome to BuddyDev forums.

    My apologies for the inconvenience. Please allow me to push an update within next 24 hours to fix it.

    It seems, there might be some css conflict.

    Regards
    Brajesh

  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #20320

    Hi,
    Will it be feasible for you to link me to the site(you can use private reply here).

    I have been trying to recreate it but I could not
    https://i.imgur.com/1ykzDMS.png

    It might be a minor float clearing issue, If I can check the form, I can put a quick solution.

    Thank you
    Brajesh

  • Participant
    Level: Initiated
    Posts: 2
    xander on #20326
    This reply has been marked as private.
  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #20327

    Hi Xander,
    Thank you.

    It was a floating issue as I had expected. It seems my version of theme is different and that’s why I could not see it.

    Please visit Dashboard->Appearance->Customize->Styling->Additional CSS and add the following lines

    
    form#register_form:after {
        content: "";
        display: table;
        clear: both;
    }
    

    That will fix it.

    Best Regards
    Brajesh

  • Participant
    Level: Initiated
    Posts: 2
    xander on #20328

    Thank you very much, worked like a charm! Is making the popup form single column possible?

  • Keymaster
    (BuddyDev Team)
    Posts: 24212
    Brajesh Singh on #20329

    Hi Xander,
    Thank you for confirming.

    Making the registration form single column. Sure, It is. We can override the media query from theme by adding this to the Customize->Styling->Additional Css section

    
    @media screen and (min-width: 992px)
    	#basic-details-section,
            #profile-details-section {
    		float: none;
    		margin-right: 0;
                    margin-left: 0;
    
    	}
    
    	.register-section {
    		width: 100%;
    	}
    
    }
    
    

    Hope that helps.

    Regards
    Brajesh

You must be logged in to reply to this topic.

This topic is: resolved