Is it possible to add a hover effect on the logo - like increase the logo size by a tad bit when you hover? For reference you can look at - artgex.com
My shopify store is
artgex.myshopify.com , pass: Superpowers123
Is it possible to add a hover effect on the logo - like increase the logo size by a tad bit when you hover? For reference you can look at - artgex.com
My shopify store is
artgex.myshopify.com , pass: Superpowers123
Hello @David123123 ,
It’s GemPages support team and glad to support you today.
I would like to give you the recommendation to support you so kindly follow the steps below:
Open your theme.liquid theme file
Paste the below code before
For example,
If you require any further information, feel free to contact me.
Best regards,
GemPages Support Team
Hi @David123123 ,
This is Victor from PageFly - Shopify Page Builder App, I’d like to suggest this idea:
Add this CSS at the bottom
Online Store ->Theme ->Edit code
Assets → base.css
li.navigation-main-item:hover a {
font-size: 24px;
}
Hope you find my answer helpful!
Best regards,
Victor | PageFly
Hello @David123123
Go to Online store >> Edit code >> Assets >> base.css
Add this code below of base.css file
.head-slot-item.header-heading svg:hover {
transform: scale(1.1);
}
.header-heading svg {
transition: 0.5s;
}