在ec-cube中更改最新消息的title顏色

原本NEWS的TITLE都是一樣顏色
為了做到沒有帶連結的TITLE都是紅色
有帶連結的加底線並有MOUSEOVER的效果
改了兩個檔案…
新的\html\user_data\packages\mystyle\bloc\news.tpl 的< div id=”box-m-body-news” >

target="_blank" target="_blank" target="_blank"

在main-area.css中加入:

div#box-m-body-news .newstitleUnlink{color: #FF0000;}

div#box-m-body-news a:link{color: #FF0000;}
div#box-m-body-news a:visited{color: #FF0000;}
div#box-m-body-news a:hover{color: #FF6600;text-decoration:underline;}
div#box-m-body-news a:active{color: #FF0000;}

原來這順序還不能弄錯ㄝ@@