Liferay 中的颜色和其他页脚参数
Color and other footer's parameters in Liferay
我需要创建像橙色小条一样的页脚,我需要让它响应,我的意思是当我调整 window 大小时一切都应该没问题。我该怎么做?
<footer id="footer" role="contentinfo">
<p class="powered-by">
#language ("powered-by German")
</p>
</footer>
这是我在 portal_normal.vm
中的 <footer>
标签
在我的 custom.css
我这样写:
#footer {
text-align: center;
background: #ffa500
}
并获得橙色居中的页脚。
要使您的 footer
响应,您可以在主题的 custom.css
中使用支持 Twitter Bootstrap classes, aided by your own custom styles controlled through media queries 的 Liferay:
示例:
<div id="footer" class="row-fluid">
<div class="span12 text-center">
<p class="powered-by">
#language ("powered-by German")
</p>
</div>
</div>
我需要创建像橙色小条一样的页脚,我需要让它响应,我的意思是当我调整 window 大小时一切都应该没问题。我该怎么做?
<footer id="footer" role="contentinfo">
<p class="powered-by">
#language ("powered-by German")
</p>
</footer>
这是我在 portal_normal.vm
<footer>
标签
在我的 custom.css
我这样写:
#footer {
text-align: center;
background: #ffa500
}
并获得橙色居中的页脚。
要使您的 footer
响应,您可以在主题的 custom.css
中使用支持 Twitter Bootstrap classes, aided by your own custom styles controlled through media queries 的 Liferay:
示例:
<div id="footer" class="row-fluid">
<div class="span12 text-center">
<p class="powered-by">
#language ("powered-by German")
</p>
</div>
</div>