0

私はjqueryタブとカスタムjquery uiを使用していますが、何らかの理由で「+」記号が常に各タブの上に表示されます.誰もそれを取り除く理由と方法を知っていますか?

ここに画像の説明を入力

CSSにアイコンを追加しませんでした。背景などを変更しただけです。タブの css 部分は次のとおりです。

    .ui-tabs { position: relative; padding: .2em; zoom: 1; } /* position: relative prevents IE scroll bug (element with position: relative inside container with overflow: auto appear as "fixed") */
.ui-tabs .ui-tabs-nav { margin: 0; padding: .2em .2em 0; }
.ui-tabs .ui-tabs-nav li { list-style: none; float: left; position: relative; top: 0; margin: 1px .2em 0 0; text-align:center; width: 110px; border-bottom: 0;
                           padding: 0; white-space: nowrap; }
.ui-tabs .ui-tabs-nav li a { float: left; padding: .5em 1em; text-decoration: none; }
.ui-tabs .ui-tabs-nav li.ui-tabs-active a{color:#A7A88A}
.ui-tabs .ui-tabs-nav li.ui-tabs-active { margin-bottom: -1px; padding-bottom: 1px; background:green}
.ui-tabs .ui-tabs-nav li.ui-tabs-active a, .ui-tabs .ui-tabs-nav li.ui-state-disabled a, .ui-tabs .ui-tabs-nav li.ui-tabs-loading a { cursor: text; }
.ui-tabs .ui-tabs-nav li a, .ui-tabs-collapsible .ui-tabs-nav li.ui-tabs-active a { cursor: pointer; } /* first selector in group seems obsolete, but required to overcome bug in Opera applying cursor: text overall if defined elsewhere... */
.ui-tabs .ui-tabs-panel { display: block; border-width: 0; padding: 1em 1.4em; background: none; }
.ui-tooltip {
    padding: 8px;
    position: absolute;
    z-index: 9999;
    max-width: 300px;
    -webkit-box-shadow: 0 0 5px #aaa;
    box-shadow: 0 0 5px #aaa;
}


.ui-tabs-nav li img {

display: block;
margin-left: auto;
margin-right: auto

}


#mytabs{
    padding: 0px;
    background: none;
    border-width: 0px;
}
#mytabs .ui-tabs-nav {
    padding-left: 0px;
    background: transparent;
    border-width: 0px 0px 1px 0px;
    -moz-border-radius: 0px;
    -webkit-border-radius: 0px;
    border-radius: 0px;
}
#mytabs .ui-tabs-panel {
    background: url(images/ui-bg_highlight-hard_100_f5f3e5_1x100.png) repeat-x scroll 50% top #f5f3e5;
    border-width: 0px 1px 1px 1px;
}
4

1 に答える 1

1

それはから来ています:

.art-postcontent ul > li:before
{
   content:url('images/postbullets.png');
   ...
}

3950 行目、および

.art-post ul > li::before {
    content: url('images/postbullets.png');
    ...
}

css でこれら 2 つのコンテンツ プロパティを削除すると、+ 記号が消えるはずです。

于 2012-11-22T00:41:47.363 に答える