Jump to content
  • Trophy icons on Widgets [Tutorial]


    MrHaim

    Hello. I had an idea to replace the first three places in widget with trophy icons. I tried several times and was successful in doing it only using CSS. 😉 

    How to do it? Add the following code to custom.css:

    /* First Place */
    .ipsWidget .ipsDataItem:first-child div.ipsDataItem_icon.ipsType_large strong{
    display:none;
    }
    .ipsWidget .ipsDataItem:first-child div.ipsDataItem_icon.ipsType_large:after {
    content: "\f091";
    color: var(--trophy-first--background);
    font-family: FontAwesome;
    }
    
    /* Second Place */
    .ipsWidget .ipsDataItem:nth-child(2) div.ipsDataItem_icon.ipsType_large strong{
    display:none;
    }
    .ipsWidget .ipsDataItem:nth-child(2) div.ipsDataItem_icon.ipsType_large:after {
    content: "\f091";
    color: var(--trophy-second--background);
    font-family: FontAwesome;
    }
    
    /* Third Place */
    .ipsWidget .ipsDataItem:nth-child(3) div.ipsDataItem_icon.ipsType_large strong{
    display:none;
    }
    .ipsWidget .ipsDataItem:nth-child(3) div.ipsDataItem_icon.ipsType_large:after {
    content: "\f091";
    color: var(--trophy-third--background);
    font-family: FontAwesome;
    }

    Results:

    cup-icon.png.2e34d0187ffaad4b6e73f81c3f929359.png.dcfbee61175ec5290d5988c5b408c631.pngimage.png.632d7ee68fd7b39363386e7f67e85de0.png.f423258221292f2311642830feb5b7d6.png


    User Feedback

    Recommended Comments

    There are no comments to display.



    Join the conversation

    You can post now and register later. If you have an account, sign in now to post with your account.
    Note: Your post will require moderator approval before it will be visible.

    Guest
    Add a comment...

    ×   Pasted as rich text.   Paste as plain text instead

      Only 75 emoji are allowed.

    ×   Ваша ссылка была автоматически строена.   Отображать как обычную ссылку

    ×   Your previous content has been restored.   Clear editor

    ×   You cannot paste images directly. Upload or insert images from URL.


×
×
  • Create New...