I tried to follow the answer of another similar question here, at Stack Overflow, but the solutions didn't work for me. I'm working in Ubuntu, Bootstrap 4.0 and coding at atom. How I'm adding the image is pretty basic, it's the following code:
<img src="x.png">
I tried with the following solutions to center the image:
<img src="x.png" class="img-responsive center-block">
and
<img class="mx-auto d-block" src="x.png">
Also creating a new class:
.img-center {margin:0 auto;}
And trying
<img src="x.png" class="img-responsive img-center">
In other hand, I did have not much luck trying to reduce the size of the image, so any hint would be welcome.