Is it possible to show a profile pic in the profile component

Ive tried adding the users profile pic to the profile page, the component just shows the actual table link. I then added a html component and added the loggedin.profilpic field. I get the profile pic but its very small.

tv profile pic link

I have tried a bit of inline css but that hasn’t worked for me.

Hey @richardch372,

Try adding the following to the CSS of the page.

.thumb-wrap {
    max-width: none;
    max-height: none;
}
.thumb-wrap img {
    max-height: none;
    max-width: none;
    height: 250px;
    float:left;
}

Thank you @Chem.

I added a little extra css to resize and round the image.

.thumb-wrap {
max-width: none;
max-height: none;
}
.thumb-wrap img {
max-height: none;
max-width: none;
border-radius: 50%;
height: 150px;
width: 150px;
float:left;
}

1 Like