Viewing 5 posts - 1 through 5 (of 5 total)
  • Author
    Posts
  • #1117133

    I’ve added a header widget via the child theme. I’m trying to get the logo on the left, widget on the right and menu on the bottom. I’m very close, but the logo and widget should be swapped. I’m using the “Header layout: Widget Left, Logo right, Menu below” code snippet, since there is not a Logo Left, Widget right and Menu bottom code snippet.

    Second question is how do remove the gold background for the menu and widget area?

    Thanks in advance for any help.

    #1117162

    I’ve corrected the logo and widget placement, but changing the float order. I am trying to figure out how to make the menu not float, but be a all black bar at the bottom, as it was originally.

    #1117366

    Hi,

    Thank you for using Enfold.

    Use the following css code to change the background color of the menu items.

    #top #header .av-main-nav > li > a {
        background-color: #000000;
        border-color: #000000;
    }

    Best regards,
    Ismael

    #1120030

    Thank you for the help. One last question. I’m having a hard time changing the header widget position. How do I decrease the space between the header widget and the menu below it. I’ve tried the below code, but I’m not getting any vertical movement.

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

    #1120096

    Hi,

    Please try this instead:

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

    Best regards,
    Rikard

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