0
我們正在使用Websphere Portal 7,並且需要基於主題創建新的樣式,這僅僅需要一個頁面的這個樣式,而我在websphere portal上是非常新的。如何在websphere portal 7上創建基於主題的樣式
你能幫我嗎?
我們正在使用Websphere Portal 7,並且需要基於主題創建新的樣式,這僅僅需要一個頁面的這個樣式,而我在websphere portal上是非常新的。如何在websphere portal 7上創建基於主題的樣式
你能幫我嗎?
我解決了這個基於頁面標識進行檢查,我只是需要修改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){
%>
這是Web2主題,PageBuilder2主題還是傳統主題風格? – Crosstalk22
我解決了我的問題,無論如何。 –