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

    Hi, i have set up theme with logo left and menu below. i would like to add address box in same header area of logo on right.
    I added to extra elements and adjusted via css. worked fine, but the extra elements box looks like an empty region now. i tried removing via css, but am always stuck with empty space. also, the space is large because i have 5 phone numbers stacked.

    that being said, I would like to use extra element area for something else, is there a way to add the address block directly to the logo header area. it looks like wasted space right now.

    thanks for your help.

    #490323

    Hey John!

    Do this, http://kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/, and then send us a link to your page and let us know where you want to move it and we’ll give you some CSS to use.

    Best regards,
    Elliott

    #490491

    sorry, pretty new to wordpress. where do i identify my widget in the function?

    add_action( ‘ava_main_header’, ‘enfold_customization_header_widget_area’ );
    function enfold_customization_header_widget_area() {
    dynamic_sidebar( ‘header’ );
    }
    my widget is called: Header Phone

    #491063

    Hi!

    what do you mean with identify your widget in the function? just implement the code into functions.php and afterwards put in your content into your new header widget.

    Regards,
    Andy

    #492308

    duh… sorry, i get it. thanks so much for your help. your support is fantastic.
    ok,.. i got it where i want it using this css

    #header .widget {
    left: 80%;
    padding-top: 0;
    position: absolute;
    top: 0;
    transform: translate(-50%);
    font-size: 11px;
    }

    but now it is not responsive. http://www.bigideasweb.com

Viewing 5 posts - 1 through 5 (of 5 total)
  • The topic ‘adding a address box on right side of header’ is closed to new replies.