My image was huge and I don’t know how to change the size of it. I was able to finagle something in cloudinary but I want to resize it in my code. -also, should I be leaving the protocol http or https out when I link images?
What do you guys think about this? https://codepen.io/AmericanPi/pen/KyzYwr
In your css class for image do (for manually changing width and height) -->
height: 180px; width: 180px;
But if I
image { height: #px; width:#px;
I will change the properties for all images. Right?
It really just changes the height and width. I mean you might have to move some stuff around to fit it.
I’ll make a class for each image and manipulate those properties accordingly. tx scarcely l exactly what I was looking for.