改变Joomla的徽标位置

时间:2014-01-24 15:25:55

标签: css joomla joomla-template joomla3.2

我一直在使用joomla默认模板:Protostar。从模板管理器我设置了一个徽标,它出现在每个页面的左上角。如何将徽标100px右移?

我在localhost中运行joomla 3.2.1。

1 个答案:

答案 0 :(得分:3)

转到以下文件:

root/templates/protostar/css/template.css

搜索徽标并编辑或添加以下内容:

#logo {
    position: relative;
    left: 100px;
}

或在线 6936 ,您会找到.site-title { }块,您可以将其替换为以下内容:

.site-title {
    font-size: 40px;
    font-weight: bold;
    left: 100px;
    line-height: 48px;
    position: relative;
}

将来,开始习惯浏览器控制台并开始检查元素。如果您使用的是Firefox,那么我建议您使用Firebug。