Need Amazon & Deezer logo support
The topic ‘Need Amazon & Deezer logo support’ is closed to new replies.
Need help? Check out our Support site, then
Can I get support for Deezer and Amazon.co.uk domain, please?
https://music.amazon.co.uk/artists/B079C24KY1/david's-pianosound -> Does not give me the Amazon logo
https://music.amazon.com/artists/B079C24KY1/david's-pianosound -> Gives me the Amazon logo.
Thanks!
The blog I need help with is: davidspianosound.com
The theme has an Amazon logo you can use, however, you may need to try using the following custom CSS to get it to show for the URL you’re using.
.social-navigation a[href*="amazon.co.uk"]:before {
content: "\f100";
}
We don’t have a Deezer icon included. You can try uploading a PNG image of a Deezer icon and then assign it as the background image for Deezer links. The following custom CSS is untested but might get you pointed in the right direction.
.social-navigation a[href*="deezer.com"] {
background-image: url("deezer-icon.png"); // Change this to the uploaded Deezer icon url.
background-repeat: no-repeat;
background-position: center;
}
.social-navigation a[href*="deezer.com"]:before {
content: "";
}
I hope that helps.
The topic ‘Need Amazon & Deezer logo support’ is closed to new replies.