• After I updated to version 2.1, the Header Widget got broken.
    I was using it to display my logo over the header image, but now it shows way below the header, out of the header area.

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter Skooter

    (@fbreve)

    The option to link the header image to the home page is also broken.

    Thread Starter Skooter

    (@fbreve)

    I tried changing the widget code to:

    .header-widget {
      position: absolute;
      left: 5%;
      top: 60px;
      margin-right: 10%;
    }

    Now I’m almost there, but the HTML widget is being set to the class ‘sidebar-wrap’, which has a ‘position: absolute’ property and that kills the title position again.

    Thread Starter Skooter

    (@fbreve)

    Here is the link: https://www.skooterblog.com/

    Thread Starter Skooter

    (@fbreve)

    After another bunch of try and error, this is what is working so far, at least until the next update ??

    .header-widget {
    	position: absolute;
        left: 5%;
    	top: 30%;
    	margin-right: 10%;
    	width: 60%;
    }
    #header .sidebar-wrap {
    	position: static;
    }
    #header {
    	height: auto;
    	max-height: 198px;
    }
Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Header Widget is broken in version 2.1’ is closed to new replies.