« Back to the HTML Forum

Change shape of profile pictures in friends section?

Posted by oli !!

posted

Forum: HTML Group

Hiya! Id like to make it so that, on my profile, the pictures in my friends space show up as stars. anyone know how i could pull this off? I've seen others do it too, so ik its possible :p


Report Topic

1 Reply

Reply by heath

posted

<style>

    .friends-grid img{

      width: 300px;

      height: 300px;

      object-fit: cover;

      clip-path: polygon(

        50% 0%,

        61% 35%,

        98% 35%,

        68% 57%,

        79% 91%,

        50% 70%,

        21% 91%,

        32% 57%,

        2% 35%,

        39% 35%

      );

    }

</style>


Permalink Report Reply