The image size on desktop is fine. It’s just the image size for the mobile is small and I’d like it to be bigger. this is the page https://www.enuesque.com/p/director/
thanks
As the image goes bigger the image tends to keep moving to the right side. To adjust the margin so the image will display in the center. You can use the below CSS code:
@media only screen and (max-width: 808px) {
.imageSize{
width:180%;
margin-left: -30%;
}
}
You can adjust the margin according to you. Currently I use -30% but you can increase or decrease the value.