Support » Fixing WordPress » Embedding gfycat links

  • I have tried to embed this gfycat on this page however, as you can see I can’t align it so that the gif is in the centre.

    Is there a way to do this, or am I stuck using normal .gifs?

Viewing 2 replies - 1 through 2 (of 2 total)
  • In the WordPress admin, you can align test in the center using one of the WYSIWYG buttons. Maybe try that…

    If not, you can also try adding this to your child theme or custom CSS:

    .iframe {
    margin: 0 auto;
    text-align: center;
    }

    Building off of Christines code:

    .iframe {
    display: block;
    margin: 0 auto;
    text-align: center;
    }

    Display block is required to get things centered in the container.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Embedding gfycat links’ is closed to new replies.