我试图修改joomla solarsentinel模板的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,我甚至看不到我的风格是继承的还是被覆盖的!
有人可以帮助我吗?
答案 0 :(得分:2)
将// Formattazione Introduzione
替换为/* Formattazione Introduzione */
这不是一个正确形成的评论,之后的所有样式声明都不起作用。