《请求帮助》文章页面字体大小问题

2016-07-07 16:33 来源:www.chinab4c.com 作者:ecshop专家

文章页 的 字体大小 在后台 调 没用 还是默认大小
换官方是模板就没问题 请求高手帮忙解决 再此感谢


回答:
找到相关模板的component.css,比如默认模板就是\themes\default\css\component.css

然后找到以下的代码
.article-title {
padding:20px 0;
text-align:center;
}
.article-title h1 {
font-size:20px;
font-weight:bold;
margin: 0px;
padding-: 6px 0 0 11px;
}
.article-title hr {
height:1px;
margin:5px;
}
.article-title span {
color:#999999;
}
.article-content {
width:90%;
margin:0 auto;
}
.article-content p {
line-height:180%;
text-indent:2em;
font-size:14px;
}
.article-content ul {
list-style-type:disc;
list-style:inside;
}
.article-content a {
font-size:14px;
text-decoration:underline;
color:#003399;
}
.article-file {
height:20px;
padding-top:8px;
text-align:center;
width:94%;
border:1px #dadada solid;
background-color:#F5F5F5;
margin:0 auto;
}

修改相关的font-size就可以

能说详细点不哟 按你的办法 没解决呀。。

如果还不行就改style.css,比如默认模板就是\themes\default\style.css

找到类似的代码
body {
font: 12px, Arial, Helvetica, sans-serif;
color: #808080;
}

修改font: 12px 为你觉得合适的大小比如 font:10px

注意不要改错了模板相关的CSS,找对了模板相应的CSS才行