如何更改joomla3.x模板背景颜色.I我正在尝试使用css,但我无法获得它。有没有人能告诉我怎么改变joomla3.3模板的背景颜色?
发布于 2015-03-09 15:05:10
您可以使用Firebug或Inspect元素进行在线编辑css,并获取您应该编辑的文件。
发布于 2015-03-09 15:41:21
转到根文件夹,然后
administrator/templates/isis/css您将找到template.css (在我的示例中它是isis模板)
body {
margin: 0;
font-family: "Helvetica Neue", Helvetica, Arial, sans-serif;
font-size: 13px;
line-height: 18px;
color: #333;
background-color: #fff; //Change this to your desired color.
}https://stackoverflow.com/questions/28849400
复制相似问题