Okay
  Public Ticket #3555328
QT: Social does not have the new X sign for Twitter
Open

Comments

  •  2
    pietercloete started the conversation

    QT: Social in the footer section does not have the new X sign for Twitter. Only show the bird one. How can I update?


  •  1,623
    Barry replied

    Hi Pieter,

    Thank you for your message.

    The icon library within the theme comes from the "Font Awesome" icon library and just recently they've added the "X" icon as addition to the Twitter icon.

    I have added it on our to-do-list and we will update the font library within the theme for the following theme update.

    If you would like to show an "X" icon right now I can only provide a CSS workaround by going through the following steps below:

    1. Click on the attached image below my message and save the "X" icon image
    2. Upload this image to your website under the "Media" tab
    3. After the image is uploaded click on the thumbnail and within the modal copy the link to the image
    4. Then go to Appearance -> Customize -> Additional CSS and add the following CSS there:
    .fa-twitter-square::before {
        display: none;
    }
    .fa-twitter-square {
        width: 25px;
        height: 25px;
        background: url("https://yourdomain.com/path-to-image.png");
        background-repeat: no-repeat;
        background-size: 100%;;
        background-position: center;
    }
    .footer .fa-twitter-square,
    .content-area .featured-box .fa-twitter-square {
        filter: brightness(0) invert(1);
        opacity: 0.7;
    }
    .elementor-widget-qt-social-icons .fa-twitter-square {
        width: 16px;
        height: 16px;
    }

        5. Replace the "yourdomain/path-to-image.png" with the URL you copied from step 3
        6. Save the settings

    Hope this helps.

    Attached files:  x-icon.png

    Best regards,
    Barry
    QreativeThemes.com  |  WordPress Themes

  •  2
    pietercloete replied

    Thank you so much Barry, worked perfectly!


  •  1,623
    Barry replied

    You're welcome Pieter.

    Let me know if you have any other questions.

    Best regards,
    Barry
    QreativeThemes.com  |  WordPress Themes