Products

Solutions

Resources

Partners

Community

Blog

About

QA

Ideas Test

New Community Website

Ordinarily, you'd be at the right spot, but we've recently launched a brand new community website... For the community, by the community.

Yay... Take Me to the Community!

Welcome to the DNN Community Forums, your preferred source of online community support for all things related to DNN.
In order to participate you must be a registered DNNizen

HomeHomeUsing DNN Platf...Using DNN Platf...Skins, Themes, ...Skins, Themes, ...Configure Skin for Privacy, Terms of Use and Login pagesConfigure Skin for Privacy, Terms of Use and Login pages
Previous
 
Next
New Post
12/21/2010 8:00 AM
 
How can I configure which skin is used to display the Privacy, Terms of Use and Login pages?

I always thought they used the site default skin, but (in a 5.6.0 portal at least), they are using the a skin I have configured for the site Home page.

Any help appreciated.



Paul Taylor
Dotcom Software Solutions Ltd
DotNetNuke, ASP.NET and SQL Server Development
 
New Post
12/21/2010 10:04 AM
 
The content for these two skin objects is injected into the home page skin. There's an issue in Gemini to get this fixed.

In the meantime, I found I could work round the problem by creating a function to add an extra class to my skin's outer div to distinguish between the various modes that a page can be in (see code below). The Terms or Privacy controls are considered Admin controls, and so the div gets a different class than when normal page content is injected. Using this class I could provide extra styling to make the Terms and Privacy content lay out correctly. Might not work in all cases, but it solved my problem.

<script type="text/VB" runat="server">
    Private Function GetPageModeCssClass() As String
        Select Case True
            Case DotNetNuke.Common.Globals.IsAdminControl
                Return "admin"
            Case DotNetNuke.Common.Globals.IsLayoutMode
                Return "layout"
            Case DotNetNuke.Common.Globals.IsEditMode
                Return "edit"
            Case Else
                Return "view"
        End Select
    End Function
</script>
<div class="<%=GetPageModeCssClass() %>">
            ... skin markup
</div>


Paul Taylor
Dotcom Software Solutions Ltd
DotNetNuke, ASP.NET and SQL Server Development
 
Previous
 
Next
HomeHomeUsing DNN Platf...Using DNN Platf...Skins, Themes, ...Skins, Themes, ...Configure Skin for Privacy, Terms of Use and Login pagesConfigure Skin for Privacy, Terms of Use and Login pages


These Forums are dedicated to discussion of DNN Platform and Evoq Solutions.

For the benefit of the community and to protect the integrity of the ecosystem, please observe the following posting guidelines:

  1. No Advertising. This includes promotion of commercial and non-commercial products or services which are not directly related to DNN.
  2. No vendor trolling / poaching. If someone posts about a vendor issue, allow the vendor or other customers to respond. Any post that looks like trolling / poaching will be removed.
  3. Discussion or promotion of DNN Platform product releases under a different brand name are strictly prohibited.
  4. No Flaming or Trolling.
  5. No Profanity, Racism, or Prejudice.
  6. Site Moderators have the final word on approving / removing a thread or post or comment.
  7. English language posting only, please.
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out
What is Liquid Content?
Find Out