• I have an animation that works, but the width and height options in the shortcode generator do not work. There is no change in the animation regardless of the width/height in shortcode.

Viewing 2 replies - 1 through 2 (of 2 total)
  • @seanhudson I second that.

    I am facing the same issue, I have changed the height and width from 100 to 10 and it makes no difference.

    @develoved Would really appreciate your inputs.

    Thanks

    I’m not the guy who made the plugin. So any help I give will be very limited.

    That being said:

    Pop the shortcode into container like this:

    <div id=”animcontainer”>[shortcode]</div>

    Then in your theme’s style.css, add this code:

    #animcontainer > .wpbdmv-animation{
    height: 400px;
    width: 200px;
    }

    That’ll set the size. If you want it to scale width or height automatically and only set one of the dimensions, you can do it like this:

    #animcontainer > .wpbdmv-animation{
    height: 400px;
    }

    Then it’ll set height to 400px and scale width based on that automatically so it doesn’t look distorted. Of course, if you have multiple animations, just change ‘animcontainer’ to whatever you want for the name so it’ll hook into those accordingly.

    Hope that helps. Good luck!

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Height and width do nothing in the shortcode generator’ is closed to new replies.