2016-10-19 63 views

回答

0

我解決了這個基於頁面標識進行檢查,我只是需要修改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){ 
%> 
相關問題