Hi there. Please can anyone help me by explaining how I make a photograph round with 2 outer borders of different colours as in the example here (upper left corner of the page): https://ishadeed.com/. I guess this can be done using CSS but I’ve been unable to understand exactly how.
Once I’ve created the rounded image and added its borders I also need help to be able to include it on my page so as to remain in a fixed position and for the image to scale down depending on the size of the viewport in just the same way as the image on the example page does.
Any advice, code examples, and links to relevant tutorials would be appreciated.
All you need to do is give the image a 50% border-radius and then give it the border color you want. You can make an out border or shadow using box-shadow.
The above would assume the image is square to start with but you could force it to be square and then use object-fit to maintain aspect ratio.
Thanks, Paul. This all appears very simple and straightforward and I’m going to go experiment. As for including this on my page in a position that remains fixed no matter what sized viewport, and that scales down gracefully depending on screen size, how would I do this?
Thank you very much for taking the time to reply to my question and for the solution you’ve provided. Your explanation of how to achieve the desired results is clear and simple and easy for me to understand, and together with Paul’s solution, I’m going to go experiment and hopefully get this up and running without further problems.
I deleted your question from the other thread and reproduced it here
The images are basically responsive anyway but I’ve changed my codepen to something a little more usable.
I’ve wrapped the images in a div which will be control the size and the images will be height::100% and width:100%. The aspect ratio of 1/1 will ensure they are round.
If you want them position:fixed then use position:fixed and suitable co-ordinates. Remember position:fixed elements don’t move and will cover any content in the way.