Search bar alignment

This topic contains 2 replies, has 2 voices, and was last updated by vicki60 vicki60 3 years, 9 months ago.

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

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

    #27957
    Ernest Marcinko
    Ernest 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;
    }
    Best,
    Ernest Marcinko

    If you like my products, don't forget to rate them on codecanyon :)


    #27963
    vicki60
    vicki60
    Participant
Viewing 3 posts - 1 through 3 (of 3 total)

You must be logged in to reply to this topic.