如何基于主题在websphere portal 7上创建样式

时间:2016-10-19 13:18:19

标签: css styles themes portal websphere-portal

我们正在使用Websphere Portal 7,我需要创建一个基于主题的新风格,只需要一个页面,我在websphere门户网站上是新手。

你能帮助我吗?

1 个答案:

答案 0 :(得分:0)

我解决了这个问题,根据页面ID进行检查,我只需要修改Skin部署的default.jsp页面。这对我来说很有用。

<% boolean mobileLogin = false; %>
<portal-logic:if selection="EXAMPLE.PublicArea.myMobilePage">
<style>
    .section-mobile {
    width: 50%;
    margin: 0 auto;
    text-align: center;
    }
.login{margin:0 auto;}</style>
<div class="section-mobile">
<img src="/Theme/themes/html/MyTheme/img/logo.gif" class="logo-mobile">
<c:if test="${!renderPlaceholdersOnly}">
                            <portal-core:screenRender/>
                        </c:if>
<% mobileLogin = true; %>
</div>
</portal-logic:if>

<% if (mobileLogin != true){
%>