如何定位主页上的“事件”列

时间:2014-08-12 20:02:54

标签: html css

我尝试仅将主页上的事件列的链接text-decoration更改为none,并尝试将事件详细信息更改为白色。

我已尝试添加

.calendar-highlights .event-title a { 
   text-decoration: none !important; 
}

这不起作用。至于事件细节的字体颜色,我完全难过了。谢谢!

http://partners.sbceo.org

1 个答案:

答案 0 :(得分:0)

编辑:似乎有一个'custom-css'文件会覆盖您的主页样式。如果你可以创建一个新的独立css文件,那么我建议在'custom-css'文件之后添加它,以便前者优先于另一个:

.calendar-highlights .event-title a{
    text-decoration: none;
}

.event-details, .calendar-highlights span.venue{
    color: #FFF;
}