[Resolved] navigation and widget not vertically aligned?

Home Forums Support [Resolved] navigation and widget not vertically aligned?

Home Forums Support navigation and widget not vertically aligned?

Viewing 3 posts - 16 through 18 (of 18 total)
  • Author
    Posts
  • #1106332
    Tom
    Lead Developer
    Lead Developer

    The .yhanm element? It would be hard to actually center it, as the content on the left will push it to the right. If there was an element on the right side that was the same width as the element on the left, we could truly center it.

    You could do something like this, but it has its downsides:

    a.yhanm {
        position: absolute;
        left: 50%;
        transform: translateX(-50%);
    }
    #1106560
    Carsten

    Thanks for the explanation, I’ll go with the element floated right, which is fine.

    #1107040
    Tom
    Lead Developer
    Lead Developer

    No problem 🙂

Viewing 3 posts - 16 through 18 (of 18 total)
  • You must be logged in to reply to this topic.