Replies

Jun 16, 2023 2 years ago
Tek
is sweet
User Avatar
Sugar

I am trying to fit two pictures of my pets side by side in the far right column, and as you can see on my profile, it is too wide for the column. How do I make the columns wider, and if I can't do that, how do I re-size an image on my profile to make it smaller? Is there a way to do this without getting too deep into css?

Jun 17, 2023 2 years ago
Fossil
is a fossil
User Avatar
Theropod

I think maybe the easiest way would be to change the image size since that doesn't mess with the whole page fitting.

<style> img { width: 150px; height: 150px; } </style>

If you add that to your profile section it should work. Everything fits okay on my screen already, so you can change the 150px to a size that suits your viewing best :> If you wanna jazz it up a tad, you could round the edges and give them a border:

<style> img { width: 150px; height: 150px; border-radius: 25px; border: 1px solid lightpink; } </style>


[tt][ banner art by Pablo Rivera || CI/Button my me || Art shop ][/tt]

Jun 26, 2023 2 years ago
Tek
is sweet
User Avatar
Sugar

- thank you so much for taking the time to respond! I will be using this code soon when I get around to working on my profile!

Please log in to reply to this topic.