CSS ajax 搜索框样式

问题描述 投票:0回答:2

我相信我的网站(http://www.imbued.co.uk/)上的ajax搜索结果下拉式有一个缩进,因为它们作为无样式列表弹出。如何删除这个缩进?

css ajax search
2个回答
3
投票

livesearch.css
上,请将这个
#livesearch_search_results
css
替换为这个

#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;

}

0
投票

它不在我的 gulfjobsy.com 网站上

© www.soinside.com 2019 - 2024. All rights reserved.