• Resolved Pattern Storm Designs

    (@pattern-storm-designs)


    Hello. Please help. I’m not sure why the submit button of the registration form only shows on mobile device and not on desktop. I have tried everything and cant get the button to show? Any advice why it’s doing this? Thank you so much for any help! Here is the link again of page in discussion. Make your screen smaller, and the blue create account button will appear. https://eml.a6f.myftpupload.com/register-3

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

Viewing 13 replies - 1 through 13 (of 13 total)
  • Hi,

    I can see that there is the following CSS written in the wp-content/themes/lineza/style.css file which is causing this issue. The “btn” is the common class used in bootstrap so there should be no such CSS applied to the common class as it will affect everywhere on your site. You can remove it or add parent class to it so that it will apply only where needed.

    .btn {
        display: none !important;
    }

    Regards,
    Patrik

    Thread Starter Pattern Storm Designs

    (@pattern-storm-designs)

    Hello Patrick, thank you for your speedy reply. I have only inserted to hide the login button. As I only want users to register and then it re-directs them to a Thank you page. I don’t want them to actually see the website. If that makes sense. What other parent class can I insert or how do I just show the register or create account button at the bottom of the form? Thank you so much for your help and assistance.

    Thread Starter Pattern Storm Designs

    (@pattern-storm-designs)

    I have removed the .btn lines. There is no buttons visible now? I think the login button shows, but it is white on a white background? How can I just make the white background transparent. I think that is where I inserted the display none option to take away the background. Apologies, I’m not a professional at all… still learning

    Thread Starter Pattern Storm Designs

    (@pattern-storm-designs)

    You will notice, if you complete the form and just hit enter on your keyboard it works perfectly! But there is still no Create Account button visible? Only a login one, but in white on the white background… so you cant see it. Let me know what is your thoughts? And thanks again so much for your time and help! Really appreciate it.

    Hi,

    You want to hide the login link below the form right? If so then please add the following CSS and remove the common CSS you have added for “btn” class:

    .uwp-footer-links {
        display: none;
    }

    Let me know if it helps or not.

    Regards,
    Patrik

    Thread Starter Pattern Storm Designs

    (@pattern-storm-designs)

    Hi Patrik,

    Thank you. I have inserted your code. It took away the login button. But there is still no visibility of the Register / Create Account button? And how do I make the white background transparent? Thank you so much. I have removed all the common css I have added.

    Thread Starter Pattern Storm Designs

    (@pattern-storm-designs)

    The Blue Create account button is only visible on my mobile, but when I view it on my desktop, there is no blue button? Did you notice that? Thanks for your help Patrik

    Hi,

    I see the CSS is still there in file /themes/lineza/style.css at line no. 587. To remove the white background you can try the following CSS:

    .uwp_widget_register .card {
        background: none;
    }

    Regards,
    Patrik

    Thread Starter Pattern Storm Designs

    (@pattern-storm-designs)

    Hello Patrik,

    Thank you so much. Not completely sure if the lines are correct? As my stylesheet now ends with line 579? And this is now with your added code, please see example below with line numbers. I don’t have the CSS anywhere else that you talking about? And also sorry, the white background is still there as well? Apologies for taking so much of your time now, I really appreciate your help.

    line 573 .uwp-footer-links {
    line 574 display: none;
    line 575 }
    line 576
    line 577 .uwp_widget_register .card {
    line 578 background: none;
    line 579 }`

    Thread Starter Pattern Storm Designs

    (@pattern-storm-designs)

    Hi again Patrik,

    I see now, and found your line in the developer browser. But I have no clue where to edit it, as I have just been using the stylesheet in Linenza theme as provided. But am searching for it. Thank you so much. That will def solve the issue.

    Just the white background? Big please! Your an Angel, thank you so much!

    Have awesome day.

    Thread Starter Pattern Storm Designs

    (@pattern-storm-designs)

    I came right Patrik! Thank you so much! I am just trying to edit the actual Stylesheet itself. I don’t know how it came in there, as on Linenza my added styling ends as mentioned above. But thank you so much! The background is also transparent now! Thank you! Thank You!! I will figure out how to also just hide the title Register, as I have already mentioned it in the red bar.

    Have a super day! And thanks again!

    Thread Starter Pattern Storm Designs

    (@pattern-storm-designs)

    Its Working!! Happy Days! Thank you Thank you Thank you!!

    You are welcome!

    Regards,
    Patrik

Viewing 13 replies - 1 through 13 (of 13 total)
  • The topic ‘Submit Button Not Showing’ is closed to new replies.