free search plugin

Discussion in 'SaleJunction E-Commerce WordPress Theme' started by rinchere1979, Aug 23, 2014.

Thread Status:
Not open for further replies.
  1. rinchere1979

    rinchere1979 Member

    Joined:
    May 31, 2014
    Messages:
    36
    Likes Received:
    0
    Location:
    Miramar
    Is there a free word press product search plugin I can place in the header area?
     
  2. PankajK

    PankajK Support Staff

    Joined:
    Aug 8, 2014
    Messages:
    93
    Likes Received:
    5
  3. rinchere1979

    rinchere1979 Member

    Joined:
    May 31, 2014
    Messages:
    36
    Likes Received:
    0
    Location:
    Miramar
  4. rinchere1979

    rinchere1979 Member

    Joined:
    May 31, 2014
    Messages:
    36
    Likes Received:
    0
    Location:
    Miramar


    I entered the HTML code in the header.php section and it works but how can I move the search bar more to the right so that it is in the center of the page?
     
  5. PankajK

    PankajK Support Staff

    Joined:
    Aug 8, 2014
    Messages:
    93
    Likes Received:
    5
    Please post your website URL, where you have managed to enter the HTML code.
     
  6. rinchere1979

    rinchere1979 Member

    Joined:
    May 31, 2014
    Messages:
    36
    Likes Received:
    0
    Location:
    Miramar


    http://idealfurnituremart.com/ The search bar is a bit too close to the logo.
     
  7. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Paste following CSS in Custom CSS and save all changes.
    Code:
    .yith-ajaxsearchform-container {
    text-align: right;
    margin-top: 15px;
    }
    if you want to display search box in center write center in place of right in code.

    That will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  8. rinchere1979

    rinchere1979 Member

    Joined:
    May 31, 2014
    Messages:
    36
    Likes Received:
    0
    Location:
    Miramar
    It works great but there is just one minor problem. When entering the first three letters, the suggestion text appears where the search bar previously was. Was also wondering if it is possible to expand the length of the search bar.
     
  9. PankajK

    PankajK Support Staff

    Joined:
    Aug 8, 2014
    Messages:
    93
    Likes Received:
    5
    Add the following CSS to fix that issue.
    Replace the above CSS with this:

    Code:
    .yith-ajaxsearchform-container {
        text-align: right;
        margin-top: 15px;
        float: right;
    }
    #menu {
        clear: both;
    }
     
  10. rinchere1979

    rinchere1979 Member

    Joined:
    May 31, 2014
    Messages:
    36
    Likes Received:
    0
    Location:
    Miramar
    It works. Thanks.
     
Thread Status:
Not open for further replies.

Share This Page