Forum Discussion
benpiddington
13 years agoHelper
Hi Chiara,
Hi Chiara,
We've started work on implementing this, but have found that when clicking on the link, the Notify Moderator page shows the full skin rather than the mobile skin. Should the mobile skin be displayed on this page, or do we need to create a mobile version of this page?
thanks,
Ben
Sign in to react to this post
ChiaraS
13 years agoLithium Alumni (Retired)
Hi,
forgot about that. We did a workaround for that problem, by replacing the Header and Footer on the "Notify Moderator Page" quilt with custom components:
NotifyModeratorPageHeader
<#if clientDevice.mobile> <@component id="mobile.widget.mobile-header"/> <#else> <@component id="quilt:Header"/> </#if>
NotifyModeratorPageFooter
<#if clientDevice.mobile>
<@component id="quilt:MobileFooter"/>
<#else>
<@component id="quilt:Footer"/>
</#if>
The following css should also be added to the mobile skin:
#lia-body.NotifyModeratorPage .MinimumWidthContainer {
min-width: 0;
}
#lia-body.NotifyModeratorPage .MinimumWidthContainer .lia-content {
width: 100%;
}
Cheers,
Chiara
Sign in to react to this post
- benpiddington13 years agoHelperThanks Chiara. We'll give that a try.
cheers,
BenSign in to react to this post - james_scee13 years agoAceHi
We've tried this, and it doesn't seem to work, any other suggestions?
cheersSign in to react to this post- nlouie11 years agoAdeptHi Lithium I'm in the same boat, users get taken to the desktop skin when the click the link, where I want to keep them within the same skin. Could you help please? Best regards, NickSign in to react to this post