Join the Soledad Facebook Users Group here
for Share, assistance, discussion, and Updates related to Soledad WordPress Theme.

If you can't create a new ticket - you can send us an email via our contact form and we will get back to you.

Okay
  Public Ticket #3146284
Original Youtube LOGO
Closed

Comments

  • iviaggidimichele started the conversation

    Good morning,

    in the previous weeks I asked Youtube to check the quotas of my API key as I often exceed the limit of 10,000 calls.
    During the verification, Youtube objected to me using a non-original icon in the footer of my blog.
    Actually in the youtube icon in the soledad theme, the internal symbol of the player is transparent, in the icon that they sent me from youtube it is white. I am attaching the Icon file.
    Is it possible to change it? Can you do it with an update? I think it's a problem everyone could have.
    Youtube gave me 15 working days to change what was requested.
    Thank you

    Attached files:  Channel naming_ youtube_social_icon_red.png

  •  2,487
    PenciDesign replied

    Hi,

    About this case, we’ll check and update it in the future theme update.

    Regards,

    PenciDesign. 

  • iviaggidimichele replied

    Thanks for your interest.
    The verification procedure with Google and Youtube of the API Key started several weeks ago.
    If I don't correct this within 15 working days I will have to start from the beginning.
    While waiting for the update, is there an easy way to replace this icon? Maybe by replacing it and calling it by the same name?

  •  2,487
    PenciDesign replied

    Hi,

    Please send me your WordPress admin account in a PRIVATE reply. 

    I’ll try to update your site within 24 hours. 

    Regards,

    PenciDesign. 

  •   iviaggidimichele replied privately
  •  2,487
    PenciDesign replied

    Hi,

    I've checked your site, and all the youtube logos on your site already use an icon by youtube. 

    So please send me a screenshot then take note of the logo position you want to change.

    Regards,
    PenciDesign.


  • iviaggidimichele replied

    Hi,

    All locations use the Yoututube icon, but it's a wrong icon. It is not the original.

    The original icon has a white inner triangle.
    The icon used in the theme has a transparent inner triangle.
    I have attached the official icon that Youtube sent me.

  • iviaggidimichele replied

    You can see it in the footer and in the mobile version.

    In the other positions you don't see the difference because the background is white, but it's still the wrong icon.

    Attached files:  Schermata 2022-10-15 alle 17.36.13.png

  •  2,487
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    .footer-socials .fa-youtube-play {
       position: relative;
    }
    .footer-socials .fa-youtube-play:after {
       content: '';
       background: #fff;
       position: absolute;
       z-index: 1;
       top: 5px;
       bottom: 5px;
       left: 3px;
       right: 3px;
       height: 8px;
    }
    .footer-socials .fa-youtube-play:before {
       position: relative;
       z-index: 2;
    }

    Regards,
    PenciDesign.



  • iviaggidimichele replied

    Thanks, now the icon is correct.

    From the Branding division of YouTube they asked me to change the writing in the footer from "YOUTUBE" to "YouTube". as written. Capital Y and T.
    I really hope it is the last change. Can this also be done with additional CSS?


  •  2,487
    PenciDesign replied

    Hi,

    Please go to Appearance → Customize → Custom CSS then add the following custom CSS code:

    ul.footer-socials li a span {
        text-transform: none;
    }

    Regards,
    PenciDesign.



  • iviaggidimichele replied

    Thanks, I tried but with this code the text shows "Youtube", instead it must appear "YouTube" with capital Y and T.
    It is precisely the correction that the YouTube Brand division asked me.
    Thanks for collaboration

  •  2,487
    PenciDesign replied

    Hi,

    Please add the following CSS code to your site:

    ul.footer-socials .fa-youtube-play + span {
        font-size: 0;
    }
    ul.footer-socials .fa-youtube-play + span:before{
        content: 'YouTube';
        font-size: 14px;
        text-transform: none;
    }

    Regards,
    PenciDesign.