Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #657528

    I need to post an address in the upper left of my site above the logo but I cannot find anywhere to do this in admin, p[lease advise and thanks for your great support!

    #657630

    Hey ejo14,

    you already used this field for you phone number, so it’s not available anymore for any address. But check out this: kriesi.at/documentation/enfold/adding-a-widget-area-to-the-header/

    Best regards,
    Andy

    #657686

    Thanks for your help, but it just does not look right where it is, is there no possibility of putting it to the far upper left on the same row the phone number is on?

    #657688

    Also, it is covering the logo on mobile

    #657943

    Hi,

    try this code inside Quick CSS field:

    #header_meta {
    z-index: 1;
    }
    #text-7 {
    top: -28px !important;
    left: 23% !important;
    }
    

    and adjust top and left value as needed.

    Best regards,
    Andy

    #658132

    I appreciate it Andy, that put the address where I wanted it but on mobile the address and phone number overlap one another.

    #659050

    Hi,

    Please remove the widget and the css modifications then add the address in the phone number field.

    
    <h4 class="header_address">Address: 2949 Balboa St. SF, CA 94121</h4>
    <h4>Call Today: 415-716-9910</h4>
    

    Add this in the Quick CSS field:

    .header_address {
        position: absolute;
        left: 60px;
    }
    
    @media only screen and (max-width: 767px) {
    .header_address {
        position: relative;
        left: 0;
    }
    }

    Best regards,
    Ismael

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