I'm facing an issue when trying to adjust the size of a PNG image with a transparent background that has a width of 279 pixels and height of 432 pixels, using the img-responsive class in Bootstrap3.
The Issue:
Every time I attempt to upload the png image within the img tag with the class= "img-fluid", it remains the same size regardless of my scaling attempts. Other images seem to resize properly, but if I choose a larger image, it only scales from very large to normal size, rather than adjusting from normal to small.
My inquiry is
What is the most effective method for optimizing a PNG image for Bootstrap-3 with the class img-responsive?
HTML:
<div class="poster">
<div class="container">
<div class="intro-text">
<div class="intro-heading">Welcome <img href="../html/indexfinal.html" class="bigv" src="../images/logos/bigvlogo.png" alt=""/> <img href="../html/indexfinal.html" class="midv" src="../images/logos/midvlogo.png" alt=""/> </div>
<div class="intro-lead-in">Hi yall'</div>
<div class="container-fluid">
<img class="mascot" src="../images/mascot/wave.png">
</div>
<a style="float:left" id="guestsignup"></a>
</div>
</div>
</div>