Hi
Please tell me a way to change the icon of newsletter on header.
https://prnt.sc/uivlk6
I have only two options… to choose the default icon or to hide it… but I want to replace it with other icon
This topic has 10 replies, 3 voices, and was last updated 5 years, 2 months ago ago by Olga Barlow
Hi
Please tell me a way to change the icon of newsletter on header.
https://prnt.sc/uivlk6
I have only two options… to choose the default icon or to hide it… but I want to replace it with other icon
Hello,
Unfortunately, we don’t have option to use the custom icon. Do you want some custom png image or FontAwesome icon to use there?
Regards
Ya I want to replace it with custom png image or FontAwesome whichever is possible.
Hello,
Then upload your custom png image to the media library and provide us with WP Dashboard access and we’ll try to add it using custom CSS.
Regards
Ok Can you please help me changing below five icons on top header:
Left Header:
1. Default Youtube icon to this one:
https://cindyscloset.ae/rent/wp-content/uploads/sites/2/2020/09/youtube-symbol.svg
2. Default Pinterest icon to this one:
https://cindyscloset.ae/rent/wp-content/uploads/sites/2/2020/09/pinterest-logo.svg
3. Default Newsletter icon to this one:
https://cindyscloset.ae/rent/wp-content/uploads/sites/2/2020/09/star.svg
Right Header:
4. Contact Icon to to this one:
https://cindyscloset.ae/rent/wp-content/uploads/sites/2/2020/09/star.svg
5. Help Center icon to this one:
https://cindyscloset.ae/rent/wp-content/uploads/sites/2/2020/09/star.svg
(last three are same icon, I will just change the URL later in the code)
sorry I asked you for help as theme does not give me option to change these icons
Thanks in advance.
Hello,
The next custom CSS code can be used:
.et_b_header-socials a[data-tooltip="Youtube"] svg,
.et_b_header-socials a[data-tooltip="Pinterest"] svg,
.et_b_header-newsletter .et_b-icon svg {
display: none;
}
.et_b_header-socials a[data-tooltip="Youtube"]:before,
.et_b_header-socials a[data-tooltip="Pinterest"]:before,
.et_b_header-newsletter .et_b-icon:before {
content: '';
width: 1em;
height: 1em;
display: block;
background-size: 1em;
}
.et_b_header-socials a[data-tooltip="Youtube"]:before {
background-image: url(https://cindyscloset.ae/rent/wp-content/uploads/sites/2/2020/09/youtube-symbol.svg);
}
.et_b_header-socials a[data-tooltip="Pinterest"]:before {
background-image: url(https://cindyscloset.ae/rent/wp-content/uploads/sites/2/2020/09/pinterest-logo.svg);
}
.et_b_header-newsletter .et_b-icon:before {
background-image: url(https://cindyscloset.ae/rent/wp-content/uploads/sites/2/2020/09/star.svg);
}
tooltips can be changed depends on your needs in this code.
Right bar icons – https://prnt.sc/uopr94
Regards
Thanks! Regarding the tooltips, I want to use custom icons… so it would be great if you could give me a code to replace them as well.
Hello,
Replace the background image in the previous code to what you need.
Regards
Hi
Previous code is not for tooltip icons (contacts widget)
https://prnt.sc/uopr94
Hello,
You the following
.et_b_header-contacts.et_element-top-level .contact-Contact svg,
.et_b_header-contacts.et_element-top-level .contact-Help svg,
.et_b_header-contacts.et_element-top-level .contact-Sell svg{
display:none;
}
.et_b_header-contacts.et_element-top-level .contact-Contact:before,
.et_b_header-contacts.et_element-top-level .contact-Help:before,
.et_b_header-contacts.et_element-top-level .contact-Sell:before {
content: '';
width: 1em;
height: 1em;
display: block;
background-size: 1em;
}
.et_b_header-contacts.et_element-top-level .contact-Contact:before {
background-image: url(https://link to your image);
}
.et_b_header-contacts.et_element-top-level .contact-Help:before {
background-image: url(https://link to your image);
}
.et_b_header-contacts.et_element-top-level .contact-Sell:before {
background-image: url(https://link to your image);
}
Regards
The issue related to '‘Newsletter Icon’' has been successfully resolved, and the topic is now closed for further responses