Viewing 4 posts - 1 through 4 (of 4 total)
  • Author
    Posts
  • #640010

    hello,
    i want to add some code in the header (a mini menu – see attached screenshot). i found this:

    but the minimenu should be aligned right in the div with the av-logo-container class. how can i achieve this? i use the Logo center, menu below options in the enfold options.

    webdesign
    thanks

    #640029

    Hey kopf-und-stift,

    After you create a header widget make changes to the css provided in the documentation or use the below code instead to position the widget to the right.

    #header .widget {
      right: 0%;
      padding-top: 0;
      position: absolute;
      top: 0;
      z-index: 999;
    }

    Best regards,
    Vinay

    #640042

    thanks vinay!
    but i need the widget in the content container. with the provided code, the widget is positioned fullwidth. there is the problem with the cart icon (see attached site for example)

    #640313

    Hi,

    Please change your code to following one

     #header .widget {
        padding-top: 0;
        position: absolute;
        top: 0;
        z-index: 999;
        width: 400px;
        max-width: 1310px;
        padding-right: 100px;
        right: 0;
    }
    

    Best regards,
    Yigit

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