2011-02-22 25 views
0

我試圖修改joomla solarsentinel模板的CSS。但我的變化(其中一些)根本沒有看到!joomla css更改沒有看到

該網站是labmond.sism.org,我的css被嵌入到標題中。這裏的代碼

// Formattazione Introduzione 
div.bodycontent { 
    font-family: 'book antiqua', palatino; 
    line-height: 1.4; 
    font-size: 1.3em; 
    background: url('".$this->baseurl."/templates/".$this->template."/images/labmond-bkg.jpg') no-repeat center; 
    background-attachment:fixed; 
} 

div.full-article h3 { 
    color: #ff0000; 
} 

div.full-article h5 { 
    font-size: 1em; 
    font-weight: bold;i 
} 

.csscolumns section.paragrafo { 
    -moz-column-count: 2; 
    -moz-column-gap: 50px; 
    -moz-column-rule: solid #DBDBDB 1px; 
    -webkit-column-count: 2; 
    -webkit-column-gap: 50px; 
    -webkit-column-rule: solid #DBDBDB 1px; 
    column-count: 2; 
    column-gap: 50px; 
    column-rule: solid #DBDBDB 1px; 
} 

div.full-article section.paragrafo{ 
    margin-bottom: 3em; 
} 

// Tabella iscritti 
table.iscrizioni{width: 100%; border-collapse:collapse;} 
table.iscrizioni tr.head td, table.iscrizioni tr.data td{ border: 2px solid} 
table.iscrizioni tr.number td{font-weight:bold; color: blue}"; 

我不明白爲什麼它被覆蓋!如果我檢查div.bodycontent,我甚至不會將我的風格看作是繼承或重寫的!

有人可以幫助我嗎?

回答

2

更換// Formattazione Introduzione/* Formattazione Introduzione */

這不是一個正確的形成註釋,所有的樣式聲明後,將無法正常工作。

+0

突然間我覺得很無聊:( – Bakaburg

+0

這是一個容易犯的錯誤,我沒有注意到它,直到我將整個頁面源複製到我的編輯器中。 –