Turbo Theme Hero Section Button Hover Effect

Solved

Turbo Theme Hero Section Button Hover Effect

alexlomt1
Tourist
15 0 2

Hello,

 

I have this button on my home page, and have my hover settings correctly setup in the theme settings, but when I hover over the button, it doesn't hover correctly. I want the button to be white on hover but it doesn't change color. How can I fix it? 

 

alexlomt1_0-1741108708297.png

 

Accepted Solution (1)
MustafA16
Tourist
49 6 7

This is an accepted solution.

Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->
under the <style> tag before the body ----->
if this code work please do not forget to like and mark it solution

 

a.action_button.first_button.highlight-true:hover {
    color: white !important;
    background-color: black !important;
}

MustafA16_0-1741109430027.png

 

 

View solution in original post

Replies 6 (6)

MustafA16
Tourist
49 6 7

hey @alexlomt1  plz share the URL of your website

alexlomt1
Tourist
15 0 2
MustafA16
Tourist
49 6 7

This is an accepted solution.

Go to online store ----> themes ----> go to three Dots ----> edit code ---->find theme.liquid files ----> place the code ---->
under the <style> tag before the body ----->
if this code work please do not forget to like and mark it solution

 

a.action_button.first_button.highlight-true:hover {
    color: white !important;
    background-color: black !important;
}

MustafA16_0-1741109430027.png

 

 

alexlomt1
Tourist
15 0 2

It didn't work. Is it not possible to adjust this through the settings of the theme? 

CodingFifty
Shopify Partner
869 127 159

Hi @alexlomt1,

 

Go to Online Store, then Theme, and select Edit Code.
Search for base.css/theme.css/style.css/main.css/custom.css file Add the provided code at the end of the file.

 

 

section#banner-1489283389016 .action_button:hover {
    background: white !important;
    border-color: white !important;
}

 

 

Coding Fifty || Shopify Partner
For any custom section queries, please visit: Fiverr Profile
Found my response useful? Like it and mark as Accepted Solution!
For additional discussions, reach out via: Email ID: codingfifty@gmail.com
alexlomt1
Tourist
15 0 2

I don't have any of those files. Is there a solution specific to the Turbo theme?