Tagged: x
-
AuthorPosts
-
March 16, 2017 at 5:42 pm #1410254
Hi, I’d like to style my login page:
https://www.dzdrones.com/my-account/
To look like this:
https://codepen.io/boudra/pen/YXzLBN
Is this possible?
Thank you!!
March 16, 2017 at 11:09 pm #1410655Hello There,
Thanks for writing in!
You can add this under Custom > CSS in the Customizer:
.woocommerce { width: 25%; margin: 0 auto; } .woocommerce-account .button, .woocommerce-checkout .button { width: 100%; border: 0px solid rgba(0, 0, 0, 0.1); font-size: 18px; }
Thanks.
March 17, 2017 at 2:31 am #1410736Hi this made all my woocommerce pages that screen width can I just make it so it happens on the login?
March 17, 2017 at 8:20 am #1410968Hello There,
Extremely sorry for the confusion, please use following CSS instead:
.page-id-32 .woocommerce { width: 25%; margin: 0 auto; } .page-id-32 .woocommerce-account .button, .woocommerce-checkout .button { width: 100%; border: 0px solid rgba(0, 0, 0, 0.1); font-size: 18px; }
Thanks.
March 17, 2017 at 8:41 pm #1411729Hi this is effecting the internals once the user is logged in and the woocommerce widgets in the footer. Is there any way to fix this?
March 18, 2017 at 5:34 am #1412008Hi there,
Please provide us with login credentials and screen shots so we can check the issue.
Thanks.
March 18, 2017 at 3:56 pm #1412305This reply has been marked as private.March 19, 2017 at 5:03 pm #1412961Hi there,
Please try this
.page-id-32 .woocommerce form.login { width: 25%; margin: 0 auto; } .page-id-32 .woocommerce form.login .button, .woocommerce-checkout .button { width: 100%; border: 0px solid rgba(0, 0, 0, 0.1); font-size: 18px; }
Thanks!
March 19, 2017 at 9:18 pm #1413162Hi My login button is still aligned on the left. Can you help?
March 20, 2017 at 5:14 am #1413442Hi There,
See attached screenshot of what I am seeing at the moment. Login button is centered.
The only left aligned is the Login text. To center that, please use this custom CSS:.woocommerce-account .woocommerce h2:first-child{ text-align: center; }
Hope this helps.
-
AuthorPosts