• Resolved Evana

    (@evana)


    How can we align our tile content to be vertical centered ?

    Our tiles are based on posts and when the post content is only a few words it appears at the top of the tile and leaves a large blank space underneath

    Great plugin by the way, does exactly what we were after. Thanks for creating it.

    https://www.ads-software.com/plugins/wp-tiles/

Viewing 1 replies (of 1 total)
  • Plugin Author Mike Martel

    (@mike_cowobo)

    Hi @evana,

    This trick should work quite well in tile bylines.

    Try applying it to .wp-tiles-byline-wrapper, like this:

    .wp-tiles-byline-wrapper {
      position: relative;
      top: 50%;
      -webkit-transform: translateY(-50%);
      -ms-transform: translateY(-50%);
      transform: translateY(-50%);
    }

    Let me know if that works!

    Mike

Viewing 1 replies (of 1 total)
  • The topic ‘Beta 1.0 : Vertically align center?’ is closed to new replies.