green4rrow
green4rrow

Reputation: 75

CSS ajax search box styling

I believe the styling of the ajax search results on my website (http://www.imbued.co.uk/) that drop down have an indent due to them popping as a none-styled list. How do I remove this indent?

Upvotes: -1

Views: 2788

Answers (1)

Hushme
Hushme

Reputation: 3144

in livesearch.css on please replace this #livesearch_search_results css with this one

#livesearch_search_results {
    background-color: #333333;
    border-bottom: 1px solid #000000;
    left: -100px;
    list-style-type: none;
    margin: 0;
    min-width: 250px;
    position: absolute;
    top: 32px;
    z-index: 100;
    padding-left: 0;

}

Upvotes: 3

Related Questions