Footer Login for "login my theme"

Hi, I use BBpress and some extensions for it. I want to have the Login field in the footer on the left site. I tried it out with the widget in the footer row. But now its above my footer (looks like a second footer). I want it in my normal footer. How can I fix it?

Thanks

Hi there,

It could be possible to change the display of the login field by adding CSS but I can’t confirm that yet because I am not sure how the login form is displaying at the moment on your site. I have checked your licenses page and you have a couple of sites and all of them have a coming soon page.

Kindly provide us with the link to your site and the admin details so that we can check it.

Thank you.

Thanks for your answer. :slight_smile:

Hi There @patsorules

If you want to add your links to bottom footer are, you will need to add your links to X > Theme Options > Footer -> Footer Content area manually. You can also disable the Footer Widget Areas under Theme Options > Footer section.

However if you want to utilize Widget Area functionality, you will need to keep the Footer Widget Areas and use the upper section of the footer to place your content easily.

Hope that’s clear.
Thanks!

Thanks first for your help.

I tried it and now its in the footer but it is at the end of the footer. I want it small on the left side in the footer. Is it possible? I opened the site that you can see my issue.
Thanks a lot

Hi @patsorules

Try adding this CSS snippet into (Theme Options > CSS):

@media screen and (min-width: 780px){
    .x-bbp-general-form {
        max-width: 20%;
        margin-top: -200px;
    }
} 

I believe this should achieve what you want.

Thanks.

Perfect works fine. Tank yous o much. :slight_smile:

Is it also possible to set the “login buttom” in the middle of the login field?

Hello There,

To center the button, please make use of this code:

.bbp-submit-wrapper button[type="submit"] {
    float: none;
    margin: 0 auto;
}

Please let us know how it goes.

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.