How To Remove The Stroke Of Buttons In Helix Ultimate? - Question | JoomShaper
SP Page Builder 6 is Here! Learn More →

How To Remove The Stroke Of Buttons In Helix Ultimate?

Dmitry Goncharov

Dmitry Goncharov

Helix Framework 4 years ago
0
12 Answers
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 4 years ago #1354

Hi Could you please give me your site URL?

0
Dmitry Goncharov
Dmitry Goncharov
Accepted Answer
4 years ago #1355

yes

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 4 years ago #1358

This button? https://prnt.sc/wjotp0 Sorry for language I do not understand. If possible give me that specific page link

0
Pavel
Pavel
Accepted Answer
4 years ago #1368

https://mega.nz/file/qn5mRY6B#wgbmQ9KRHyLD56aZPlRZMLiKw4NeLlGQBFKGgEGZMAc

There are no settings for this. This can only be done via css.

Using the browser's code inspector, find the style of the button with the :focus pseudo-class, edit it as needed, copy the entire edited rule and paste it into the custom.css file.

0
Dmitry Goncharov
Dmitry Goncharov
Accepted Answer
4 years ago #1376

This button? https://prnt.sc/wjotp0 Sorry for language I do not understand. If possible give me that specific page link

Yes, any button.

0
Dmitry Goncharov
Dmitry Goncharov
Accepted Answer
4 years ago #1921

??

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 4 years ago #1926

hi Use this custom css

.btn:not(:disabled):not(.disabled) {
    display: none;
}

Add this css code inside the custom.css file. Note: Path towards custom CSS: Extensions>Templates>Styles> Click on your current default template name then choose Template Options. Then find custom CSS within the custom code. https://prnt.sc/pu705g https://prnt.sc/pu70zn In Extensions>Template> Template Options > Custom Code > Custom CSS please add this Thanks

0
Dmitry Goncharov
Dmitry Goncharov
Accepted Answer
4 years ago #1931

This code hides all the buttons.

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 4 years ago #1936

ok then remove this code and let me know. I want to try again

0
Dmitry Goncharov
Dmitry Goncharov
Accepted Answer
4 years ago #1946

Deleted

0
Mehtaz Afsana Borsha
Mehtaz Afsana Borsha
Accepted Answer
Support Agent 4 years ago #1961

Try this one and let me know

input.btn.btn-primary.button.btn-buy {
    display: none;
}
0
Dmitry Goncharov
Dmitry Goncharov
Accepted Answer
4 years ago #1970

.btn-success.focus, .btn-success:focus { box-shadow: none !important; }

this helped

0