How to customize "view all" button in Be Yours theme

Good day! I’m currently trying to customize the ‘view all’ buttons without changing the colors of other buttons in the entire store. I’ve tried a few suggestions on here but none of them worked for me. I’m using the Be Yours theme. I would like for them to have a black border and white background or just a black underline. I would greatly appreciate the help :folded_hands:

1 Like

Hi @kcaresa

Try 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:
#shopify-section-template--20801450967355__3b7acea4-4d18-4f19-99fe-daf1bbaf22fa > div:nth-child(10) > div:nth-child(1) > div:nth-child(3) > a:nth-child(1) {
  border: 1px solid black;
}
1 Like

Hi @kcaresa ,

This is Anthony from Beae Landing Page Builder, and I’m happy to assist you today.

While I acknowledge that this issue falls short of the desired outcome, I have an idea that I believe might be of help:

  1. Go to Online Store → Theme → Edit code
  2. Open your theme.liquid file
  3. Paste below code before :

Best regards,

Anthony

1 Like

If do you like the underline only. Try this one.

Same Instruction.

#shopify-section-template--20801450967355__3b7acea4-4d18-4f19-99fe-daf1bbaf22fa > div:nth-child(10) > div:nth-child(1) > div:nth-child(3) > a:nth-child(1) {
 text-decoration: underline;
 text-underline-offset: 5px;
}

And Save.

Result:

1 Like

Thank you so much, this worked!

Thank you a ton, the underline solution worked!

1 Like