把关联链接 蓝色实线的下划线改为蓝色虚线,鼠标经过时关联链接变为桔黄色
修改文件名称:template/default/common/module.css
.relatedlink, .relatedlink:hover { text-decoration: none !important; color: {TABLETEXT} !important; border-bottom: 1px solid blue; }
改为
.relatedlink { text-decoration: none !important; color: {TABLETEXT} !important; border-bottom: 1px dotted blue; }
.relatedlink:hover { text-decoration: none !important; color: #FF6600 !important; border-bottom: 1px dotted blue; }
如果是要去掉下划线,那就删掉 border-bottom: 1px dotted blue;
PS:
color: {TABLETEXT}
改为你想要的颜色即可