Underline links as buttons

Hi

Is it possible to change style of buttons to just underlined text.

I use Impulse theme.

1 Like

Hi, @johanhallstrom

Can you share the store URL and take a screenshot to describe your requirements? So that I can assist you.

Hello There,

Please share your store URL and password.
So that I will check and let you know the exact solution here.

Thanks!

Pass: stewnu

I want just underlined text as buttons, see images.

Thanks!

Pass: stewnu

I want just underlined text as buttons, see images.

1 Like

You can try this code by following these steps:
Step 1: Go to the online store ->Theme ->Edit Code.
Step 2: Find the theme.liquid file and add the following code above the tag


Hopefully it will help you. If yes then Please don’t forget hit Like and Mark it as solution!

Hello There,

  1. In your Shopify Admin go to online store > themes > actions > edit code
  2. Find Asset > hero.css and paste this at the bottom of the file:
.slideshow__slide--slideshow-0 .btn{
background: none !important;
text-decoration: underline !important;
padding:5px
}
.slideshow__slide--slideshow-0 .btn:hover{
background: none !important;
transition-delay: unset !important;
}
.hero__link a.btn {
font-size: 15px;
}

Hello @johanhallstrom

This is Amelia at PageFly - Shopify Advanced Page Builder app.

You can try the following steps I have provided to help you solve the problem you are facing:

Step 1: Online Stores > Themes > Edit code

Step 2: Choose file base.css or theme.css

Step 3: Add code

.slideshow__slide--slideshow-0 .btn{
    background: none !important;
    text-decoration: underline !important;
}
.slideshow__slide--slideshow-0 .btn:hover{
    background: none !important;
}

Hoping my solution helps you solve your problem.

Best regards,

Amelia | PageFly

1 Like