• Not sure why I am having issues just resizing an animated gif. It seems to be ignoring my width and height call outs.

    <img class="animated-gif" src="https://52.70.156.29/wp-content/uploads/2023/02/03_Lottery_Drum_JoeFleming-1.gif">
    
    <style>
    img.animated-gif {
    width: 300px;
    height: auto;
    }
    </style>

    Can anyone help.

    • This topic was modified 2 years, 1 month ago by tomme01.

    The page I need help with: [log in to see the link]

Viewing 1 replies (of 1 total)
  • It seems to be ignoring my width and height call outs.

    That’s because CSS has higher “power” than the width and height attributes. And you have the following CSS in your “Salient” theme controlling your images’ dimensions:

    .row .col img {
        margin-bottom: 15px;
        max-width: 100%;
        height: auto;
    }
Viewing 1 replies (of 1 total)
  • The topic ‘Resizing Animated Gifs’ is closed to new replies.