2013-09-27 61 views
1

我已經在我的復位後,在各地線下69一般錨CSS是壓倒一切的類......但只有在一個頁面上

a, a:visited { 
    text-decoration: none; 
    font-size: 1.3em; 
    color: #333; 
    font-family: "museo"; 
    border-bottom: #444 solid 1px; 
} 

然後向下在行303我有:

.leaderboard_ad { 
    background: #fff; 
    margin: 10px 36px; 
    position: relative; 
    width: 728px; 
    height: 70px; 
    padding: 5px; 
    border-radius: 3px; 
    border-bottom: #e4e4e4 solid 3px; 
    text-align: center; 
} 

.ad_title { 
    display: block; 
    border: 0; 
    color: blue; 
    font-size: 1.4em; 
} 

.ad_subhead { 
    color: green; 
    border: 0; 
    text-decoration: underline; 
} 

這是一個開發文件,這就是我擁有廣告的原因,它是adsense的佔位符。

現在,在大多數網頁上,它給了我我想要的風格。然而,在一個頁面上,排行榜廣告佔位符被一般的主播風格覆蓋,我找不到原因。 HTML被複制和粘貼,所以它是100%相同的。它看起來正確的方式無處不在,但只有一頁......我已經清除了我的緩存,它只是繼續前進。這似乎違背了所有的邏輯。有任何想法嗎?

的HTML代碼:

<div class="leaderboard_ad"> 
       <a href="#" class="ad_title">Ad Title</a> 
       <a href="#" class="ad_subhead">www.google.com/adsense</a> 
       <p>This is an example of a leaderboard AdSense text ad.</p> 
      </div> 

回答

0

切換您的選擇,以a.ad_titlea.ad_subhead

+0

我可以試試。我並不擔心,因爲AdSense稍後會添加自己的廣告。我只是認爲這是最奇怪的錯誤。事實上,除了一個頁面提供了正確的風格,並且所有的css/html都被正確地寫入了...讓我的頭腦變得更加複雜。 –

+0

工作。多麼奇怪。 –