Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1093772

    Hello,
    Working on a site and I wanted to add some info to the side of the logo. For the header, I’m using Logo left, Menu right. I followed the instructions here: https://kriesi.at/documentation/enfold/header/#toggle-id-2 and was able to get the Header Widget but the aligning is off. I was able to add padding to the left but I can’t get the text to go higher. I’ll add a screenshot to the private content. I would like the text to be aligning with the logo and not so far down/below. Thanks!

    #1094155

    Hey CenturyAC,

    Could you please give us a link to your website, we need more context to be able to help you.

    Best regards,
    Victoria

    #1094167
    #1095259

    Hi,

    Thanks for the update.

    This css code should help.

    #header .widget {
        top: -50px;
    }

    Just add it in the child theme’s style.css file or the Quick CSS field.

    Best regards,
    Ismael

    #1096270

    Thank you. The code worked but when I try to do a line break <br> there is too much extra padding – please see: http://airconditioningftbend.com/

    Also, is there a way to omit this on the mobile version?

    #1096683

    Hi,

    Thanks for the update. Why do you need the line breaks? You can modify the space around the widget using css code.

    #header .widget {
        top: -50px;
        position: absolute;
        left: 200px;
    }
    

    Best regards,
    Ismael

    #1096956

    I just want two lines of text but when I use <br> the spacing is too large. Please see http://airconditioningftbend.com/

    #1097503

    Hi,

    Thanks for the update.

    It’s because of the default line height property. Try to include that css property inside the previous css code.

    #header .widget {
        position: absolute;
        top: 0;
        left: 200px; 
        line-height: 20px;
    }

    You can adjust the value as needed.

    Best regards,
    Ismael

    #1097821

    It worked. Thank you so much!!!

    #1097858

    Hi,

    I’m glad this was resolved. If you need additional help, please let us know here in the forums.

    Best regards,
    Jordan Shannon

Viewing 10 posts - 1 through 10 (of 10 total)
  • The topic ‘Header Widget Area – Need to Center’ is closed to new replies.