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

    I am trying to add two widgets like mentioned in this link – https://kriesi.at/documentation/enfold/example-of-logo-left-widgets-right-menu-below/
    Even after following all the steps, i am not getting perfect design. Can you please check what is the issue.

    #1223003

    Hey,

    Thanks for contacting us!

    I think it might be related to UberMenu as it does not sit right even when I delete widget from header. Could you please create temporary admin logins and post them here privately so I can look into it?

    Best regards,
    Yigit

    #1223013
    This reply has been marked as private.
    #1223243
    This reply has been marked as private.
    #1223354

    Hi,

    I added following code to bottom of Style.css file of your child theme

    
    .header-widgets {
        justify-content: space-evenly;
        display: flex;
    	color: white;
    	margin-bottom: -120px;
    	padding: 10px 0;
    }

    and changed your code in functions.php file to following one

    
    add_action( 'ava_main_header', 'enfold_customization_header_widget_area' );
    function enfold_customization_header_widget_area() {
    ?> <div class="header-widgets"> <?php dynamic_sidebar( 'header' ); ?> </div><?php
    }

    Please review your website :)

    Best regards,
    Yigit

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