HomePage › Forums › Themes Support › Freshio – Organic & Food Store WordPress Theme › Edit Header elements as : Call us / Wish List / customer account / Cart icons
- This topic has 5 replies, 2 voices, and was last updated 1 month ago by
Billy Nguyen.
-
AuthorPosts
-
January 22, 2021 at 2:26 pm #3932
Hey,
I would like to edit the different element of the header as :
– The phone number of the Helpdesk
– Change the color of following icons (individually) : Wish List / customer account / Cart icons
– The font size of the cart total amountThank you
January 22, 2021 at 3:03 pm #3937Hi there,
#1. Change phone number:
Go to Freshio Options -> Header -> Contact Info: https://prnt.sc/xffzp7
#2. Please copy code into file style.css ( child-theme) and edit your-color:
Account icon:
.site-header-account{ background: #your-color ! important; }
Whishlist:
.site-header-wishlist{ background: #your-color ! important; }
Cart Icon:
.site-header-cart .cart-contents:before{ background: #your-color ! important; }
#3.Font size:
.site-header-cart .cart-contents .amount{ font-size: your-size ! important; }
January 24, 2021 at 6:54 pm #3997Thank you !
And how can I please get the hover (changing color) effect for each icon ?January 25, 2021 at 10:24 am #4022Hi,
Where do you want to change color hover? Menu icon on the footer?/
Mobile version not support hover effect, so that this is not necessary.January 25, 2021 at 3:05 pm #4043Hello
I want to apply the change color hover on the header icons !
I tried to edit the provided code but I did not succeed to make it.
Thank youJanuary 25, 2021 at 5:04 pm #4059Oh sorry,
Try to use this code:
.site-header-account:hover { background-color: #your-color !important; } .site-header-wishlist:hover { background-color: #your-color !important; } .site-header-cart .cart-contents:hover:before { background-color: #your-color !important; }
-
AuthorPosts
You must be logged in to reply to this topic.