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

    what code snippet do you use to create the header widget area?

    Edit : if you are not happy with the behavior on responsive case with your solution ! give this a try:
    this is a bit different hook point on enfold
    this to functions.php of your child theme:

    add_action( 'ava_before_bottom_main_menu', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    	dynamic_sidebar( 'header' );
    }

    and this to quick css:

    #header_main .widget {
        float: right !important;
        padding: 10px 0 20px;
        width: 30%;
    }
    
    #header_main .textwidget {
        line-height: 24px;
    }
    
    @media screen and (max-width: 768px) {
        #header_main .widget {
        float: left !important;
        width: 100%
    }
    }

    the widget will be a direct adjacent to logo container – and in responsive case it is under the Logo

    • This reply was modified 7 years, 5 months ago by Guenni007.
    #809781

    Hi Kriesi Team,

    Good Day!

    I solved it on my own. :)

    This is the solution:

    If you are wanting to add a widget area to your header then add this to the bottom of your functions.php file.

    add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    	dynamic_sidebar( 'header' );
    }

    And then navigate to Dashboard > Appearance > Widgets and create a new widget area named header and add some widgets to it.

    Lastly, add this to Quick CSS (at the bottom of Dashboard > Enfold > General Styling)

    #header .widget {
      left: 70%;
      padding-top: 0;
      position: absolute;
      top: 20px;
      transform: translate(-50%);
      z-index: 999;
    }

    Hope other users found this useful. :)
    Thanks!

    Best Regards,
    Daryl Malibiran
    Web Designer

    #809787

    Hi Daryl,

    Thank you for sharing the solution you found! We appreciate it.

    For your information, you can take a look at Enfold documentation here – http://kriesi.at/documentation/enfold/

    And if there are features that you wish Enfold had, you can request them and vote the requested ones here – https://kriesi.at/support/enfold-feature-requests/

    Thank you for using Enfold!

    Cheers!
    Sarah

Viewing 4 posts - 1 through 4 (of 4 total)
  • The topic ‘Logo Left, Widget Right, Menu Bottom’ is closed to new replies.