Site logo

Archived topic

bug?

5 replies · Started by Uwe Pfeifer on April 1, 2015

Viewing posts 1–6 of 6

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?

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;
      }
}

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?

Updated the code above (sorry about that).

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

it worked. thank you very much :))

You're welcome :)

This archived topic is closed to new replies.