Home Forums Support bug?

  • This topic has 5 replies, 2 voices, and was last updated 9 years ago by Tom.
Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #94318
    Uwe Pfeifer

    At my website the header title get’s moved out of “centered” – not properly aligned with site tagline and is not centered anymore after adding the plugin “Lightweight Social Icons” widget to the header. http://www.unitycraft.de there u can see it. Is this wanted – can this be corrected?

    #94326
    Tom
    Lead Developer
    Lead Developer

    The header widget is set to float: right, which fills up an area in the container which in turn shifts the other content to the right.

    To fix this, you can try this CSS:

    @media (min-width:769px) {
          .inside-header {
                position: relative;
          }
          .header-widget {
                float: none;
                position: absolute;
                right: 30px;
                top: 30px;
          }
    }
    #94339
    Uwe Pfeifer

    This moved the widget to the right and now it doesn’t look as good anymore. Can the Widget still be placed at the position where it initially was?

    #94340
    Tom
    Lead Developer
    Lead Developer

    Updated the code above (sorry about that).

    You can tweak the pixels to put it exactly where you want it.

    #94342
    Uwe Pfeifer

    it worked. thank you very much :))

    #94343
    Tom
    Lead Developer
    Lead Developer

    You’re welcome 🙂

Viewing 6 posts - 1 through 6 (of 6 total)
  • You must be logged in to reply to this topic.