Title: Submit Button Not Showing
Last modified: July 15, 2021

---

# Submit Button Not Showing

 *  Resolved [Pattern Storm Designs](https://wordpress.org/support/users/pattern-storm-designs/)
 * (@pattern-storm-designs)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/submit-button-not-showing-10/)
 * 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](https://eml.a6f.myftpupload.com/register-3)
    -  This topic was modified 5 years, 1 month ago by [Pattern Storm Designs](https://wordpress.org/support/users/pattern-storm-designs/).
 * The page I need help with: _[[log in](https://login.wordpress.org/?redirect_to=https%3A%2F%2Fwordpress.org%2Fsupport%2Ftopic%2Fsubmit-button-not-showing-10%2F%3Foutput_format%3Dmd&locale=en_US)
   to see the link]_

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

 *  [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * (@wpdev10)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/submit-button-not-showing-10/#post-14667271)
 * 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](https://wordpress.org/support/users/pattern-storm-designs/)
 * (@pattern-storm-designs)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/submit-button-not-showing-10/#post-14668006)
 * 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](https://wordpress.org/support/users/pattern-storm-designs/)
 * (@pattern-storm-designs)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/submit-button-not-showing-10/#post-14668018)
 * 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](https://wordpress.org/support/users/pattern-storm-designs/)
 * (@pattern-storm-designs)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/submit-button-not-showing-10/#post-14668028)
 * 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.
 *  [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * (@wpdev10)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/submit-button-not-showing-10/#post-14668072)
 * 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](https://wordpress.org/support/users/pattern-storm-designs/)
 * (@pattern-storm-designs)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/submit-button-not-showing-10/#post-14668163)
 * 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](https://wordpress.org/support/users/pattern-storm-designs/)
 * (@pattern-storm-designs)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/submit-button-not-showing-10/#post-14668179)
 * 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
 *  [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * (@wpdev10)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/submit-button-not-showing-10/#post-14668246)
 * 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](https://wordpress.org/support/users/pattern-storm-designs/)
 * (@pattern-storm-designs)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/submit-button-not-showing-10/#post-14668471)
 * 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](https://wordpress.org/support/users/pattern-storm-designs/)
 * (@pattern-storm-designs)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/submit-button-not-showing-10/#post-14668517)
 * 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](https://wordpress.org/support/users/pattern-storm-designs/)
 * (@pattern-storm-designs)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/submit-button-not-showing-10/#post-14668680)
 * 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](https://wordpress.org/support/users/pattern-storm-designs/)
 * (@pattern-storm-designs)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/submit-button-not-showing-10/#post-14668854)
 * Its Working!! Happy Days! Thank you Thank you Thank you!!
 *  [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * (@wpdev10)
 * [5 years, 1 month ago](https://wordpress.org/support/topic/submit-button-not-showing-10/#post-14668898)
 * 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.

 * ![](https://ps.w.org/userswp/assets/icon-256x256.png?rev=2784318)
 * [UsersWP - Front-end login form, User Registration, User Profile & Members Directory plugin for WP](https://wordpress.org/plugins/userswp/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/userswp/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/userswp/)
 * [Active Topics](https://wordpress.org/support/plugin/userswp/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/userswp/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/userswp/reviews/)

## Tags

 * [button](https://wordpress.org/support/topic-tag/button/)
 * [submit button](https://wordpress.org/support/topic-tag/submit-button/)

 * 13 replies
 * 2 participants
 * Last reply from: [Rahul Gandhi](https://wordpress.org/support/users/wpdev10/)
 * Last activity: [5 years, 1 month ago](https://wordpress.org/support/topic/submit-button-not-showing-10/#post-14668898)
 * Status: resolved