This website uses cookies to personalize your experience. By using this website you agree to our cookie policy.

Search bar alignment

Viewing 3 posts - 1 through 3 (of 3 total)
  • Author
    Posts
  • #27946
    vicki60vicki60
    Participant

    How can I get the search bar to align with telephone number so flows on the same line instead of underneath

    #27957
    Ernest MarcinkoErnest Marcinko
    Keymaster

    Hi,

    I was looking at the site a moment ago, but the position was changing all the time, I guess you are working on it currently.

    If the plugin is still placed as the first item of the “container” div element, then this will place it between the logo and the items:

    .container {
        position: relative;
    }
    
    .container .asp_m_2 {
        position: absolute;
        width: 200px !important;
        left: 300px;
        top: -2px;;
    }

    ..or giving it a bit less width, at the current position, and changing it to an inline-block, will move the logo to it’s original position:

    .container .asp_m_2 {
        display: inline-block !important;
        width: 25% !important;
    }
    #27963
    vicki60vicki60
    Participant
Viewing 3 posts - 1 through 3 (of 3 total)
  • You must be logged in to reply to this topic.