Impulse Theme Make Button Full Width Mobile

Hi,

im looking to make this button full width on mobile or hide the curved edges as I think it’s a rounded button like my others. I’d rather it not show the corners so it blends well

my site is https://luxurymrkt.com/collections/footwear-1/products/axel-arigato-hooper-sneakers

Hi @Luxurymrkt

I’m Richard Nguyen from PageFly- Free Landing Page Builder

You can try with this code.

Follow this:

Go to Online Store->Theme->Edit code->theme.css->paste bellow code in top of file

@media only screen and (max-width: 768px)

.return-link {

width: 400px !important;

border-radius: unset !important;

}

It will look like this: https://prnt.sc/gVv63q9TQBSp

If you feel my answer is helpful, like it or mark it as a solution. Let me know if you have any questions.

Best regards,

Richard | PageFly

Hi,

You can try this code

  1. Go to Online Store-> Theme->Edit code
  2. Asset-> theme.css ->paste the below code at the bottom of the file.
@media only screen and (max-width: 749px){
.btn.btn--small.return-link{
	border-radius: 0;
}}
1 Like