2012-11-21 23 views
0

我正在使用jquery選項卡和自定義jquery ui,但出於某種原因,每個選項卡頂部總會出現「+」號,是否知道爲什麼以及如何擺脫它?jquery選項卡無法擺脫格式的「+」圖標

enter image description here

我沒有在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; 
} 
+2

我們可以看看HTML嗎? – jaudette

+0

請檢查地址頁面:http://nwscomps.com/test/sito/tendaggi.html – user1238784

回答

1

它是從未來:

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

上線3950和

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

上線3938.您可以刪除這兩個內容屬性在你的CSS中,+符號應該消失。

+0

非常感謝你的工作。它似乎是不相關的jQuery選項卡然後... – user1238784

+0

很高興它的工作:)隨時標記爲答案,如果沒有其他問題持續存在。 – kennypu