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

How create style on websphere portal 7 based on theme

我们正在使用 Websphere Portal 7,我需要创建一个基于可用主题的新样式,只需要一个页面使用这种样式,我对 websphere portal 还很陌生。

我该怎么做?

我通过检查页面 ID 解决了这个问题,我只需要从部署的皮肤修改 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){
%>