Is there a way to round images not in the css?
I'm trying to do my wiki's staff list, and I wanted to make the avatar image on the table to be rounded or in a circular shape... How can I do that??
Is there a way to round images not in the css?
I'm trying to do my wiki's staff list, and I wanted to make the avatar image on the table to be rounded or in a circular shape... How can I do that??
Can you upload the photo you’re wanting to be circular because I might be able to help you.
It's my profile picture..
I was hoping to shape it in to a circular shape or make it have a rounded edge in here: https://a-business-proposal.fandom.com/wiki/A_Business_Proposal_Wiki:User%27s_Rights (at the table at the very bottom.)
Yes! Thank you! I'll just input it in the source. Thanks again!
@Diamaker there seems to be an issue with the photo, can you possibly give me content mod for 5 minutes?
You actually can do that without using photo editor nor css. For instance, using this following code, I can make a 250px-sized round-shaped image with red border:
<div style="width:250px; height:250px; border-style:solid; border-width:5px; border-color:red; border-radius:50%; background-color:transparent; overflow:hidden;">[[File:Twenty-Fifth Baam-Profile.png|250px]]</div>
To see how it works, you can take a look at my sandbox here
@OttoLannister550 can the [[File:{{{image}}}|250px]] be replaced by a code that can show the profile picture of the user? And will be auto-updated if the user changes their profile pic...
@OttoLannister550 Okay, Thanksss!
Technically, that is still CSS. There is stylesheet CSS which is placed on pages like MediaWiki:Wikia.css and then there is inline CSS that is place directly on the page as in OttoLannister550's solution.
What do you think?