What's your biggest current challenge? Have your say in Community Polls along the right column.

Re: Buttons not visible on account page

Solved

Why are buttons not visible on my account page?

SIO2
Tourist
34 0 3

Hi there, does anyone know how to get the buttons on my account page visible for desktop and mobile version? store url: snibs.nl

 

Thanks in advanceWaarom (32).png

Accepted Solution (1)

PageFly-Oliver
Shopify Partner
878 190 184

This is an accepted solution.

Hi @SIO2 ,

 

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.liquid

Step 3: Paste the below code at the bottom of the file -> Save

 

<style>
#customer_login *{
color:black !important
}
#customer_login button{
border: 1px solid black !important;
}
</style>

 

 

Hope my solution works perfectly for you!

Best regards,

Oliver | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

View solution in original post

Replies 5 (5)

Made4uo-Ribe
Shopify Partner
9107 2176 2686

Hi @SIO2 

Check this one. 

From your Shopify admin dashboard, click on "Online Store" and then "Themes".

Find the theme that you want to edit and click on "Actions" and then "Edit code".

In the "Assets" folder, click on "base.css, style.css or theme.css" file, depending on which file your theme uses to store its CSS styles. At the bottom of the file, add the following CSS code:

 

.underlined-link, .customer a, .customer button {
    color: black !important;
}
.customer button {
    border:1px solid black !important;
}

 

And Save. 

Result:

Made4uoRibe_0-1703113458875.png

 

 

Please don't forget to Like and Mark Solution to the post that helped you. Thanks

If this fixed your issue, Likes and Accept as Solution are highly appreciated. Coffee tips fuel my dedication.
Get experienced Shopify developers at affordable rates—visit Made4Uo.com for a quick quote!
Need THEME UPDATES but have custom codes? No worries, for an affordable price.
Create custom Shopify pages effortlessly with PageFly's drag-and-drop ⚙️.
SIO2
Tourist
34 0 3

Thank you! It does work on desktop but not on mobile yet. You have a css code for that aswell?

PageFly-Oliver
Shopify Partner
878 190 184

This is an accepted solution.

Hi @SIO2 ,

 

You can try this code by following these steps:

Step 1: Go to Online Store->Theme->Edit code.

Step 2: Search file theme.liquid

Step 3: Paste the below code at the bottom of the file -> Save

 

<style>
#customer_login *{
color:black !important
}
#customer_login button{
border: 1px solid black !important;
}
</style>

 

 

Hope my solution works perfectly for you!

Best regards,

Oliver | PageFly

Please let me know if it works by giving it a Like or marking it as a solution!


PageFly - #1 Page Builder for Shopify merchants.


All features are available from Free plan. Live Chat Support is available 24/7.

SIO2
Tourist
34 0 3

Thanks for the response! It did work except that the text is still white (so not visible in button) 

You know how to fix that aswell?

SIO2
Tourist
34 0 3

got it, thanks!