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, ...How do I get Speerio Skinergy?How do I get Speerio Skinergy?
Previous
 
Next
New Post
5/2/2008 12:01 AM
 

Hi Ray,

I downloaded

1. Speerio_Skinergy from your website, copied to folder to DNN

2. Pure CSS menu from HouseofNuke.com, add it as custom module (just followed instruction of step 3)

2. BeyondCSS skin from http://www.thinkofdesign.com/Skins/Free/tabid/54/Default.aspx  add as a new skin.

Then modify the line 35 of <DNNRoot>/controls/Speerio/Skinergy/skinprefs.ascx

from

Sub InjectStyleSheet(ByVal cookieId As String, ByVal suffix As String, small As Image, medium As Image, large As Image)

to

Sub InjectStyleSheet(ByVal cookieId As String, ByVal suffix As String, small As System.Web.UI.WebControls.Image, medium As System.Web.UI.WebControls.Image, large As System.Web.UI.WebControls.Image)

then log in as host, select skin, select BeyondCSS, preview. Please verify. Again, thanks for your help!

 
New Post
5/7/2008 2:17 PM
 

After I got the Speerio Skinergy from Ray, I could not find any instruction how to add the Speerio Skinnergy to existing DNN Skin. I played around and finally, I have an instruction how to add Speerio to DNN-Blue skin for anybody interest it.


1. Download from Aplus Covers Design Studios. At www.apluscovers.com/Downloads/Speerio_Skinergy.zip

2. Unzip and copy Speerio folders to <DNNRoot>

3. Modify the line 35 of <DNNRoot>/controls/Speerio/Skinergy/skinprefs.ascx
• from “Sub InjectStyleSheet(ByVal cookieId As String, ByVal suffix As String, small As Image, medium As Image, large As Image)
• to “Sub InjectStyleSheet(ByVal cookieId As String, ByVal suffix As String, small As System.Web.UI.WebControls.Image, medium As System.Web.UI.WebControls.Image, large As System.Web.UI.WebControls.Image)

4. Copy folder sub-folder “prefs” from <DNNRoot>/Portals/_default/Skins/Speerio-Z/ to <DNNRoot>/Portals/_default/Skins/DNN-Blue/

5. Edit <DNNRoot>/Portals/_default/Skins/DNN-Blue/prefs/layout-large.css to
.pagemaster{width:100%;}

6. Edit <DNNRoot>/Portals/_default/Skins/DNN-Blue/prefs/layout-medium.css to
.pagemaster{width:1024px;}


7. Copy existing files from <DNNRoot>/Portals/_default/Skins/DNN-Blue/ to new files (in the same folder)
• Copy “Horizontal Menu - Full Width.ascx” to “Horizontal Menu - Speerio.ascx
• Copy “Horizontal Menu - Full Width.htm” to “Horizontal Menu - Speerio.htm
• Copy “Horizontal Menu - Full Width.JPG” to “Horizontal Menu - Speerio.JPG

8. Edit file <DNNRoot>/Portals/_default/Skins/DNN-Blue/Horizontal Menu - Speerio.ascx
Find a line <%@ Register TagPrefix="dnn" TagName="DOTNETNUKE" Src="~/Admin/Skins/DotNetNuke.ascx" %>

Add 2 new lines below that line
<%@ Register TagPrefix="speerio" TagName="SKINPREFS" Src="~/controls/Speerio/Skinergy/skinprefs.ascx" %>
<%@ Register TagPrefix="speerio" TagName="PALETTES" Src="~/controls/Speerio/Skinergy/palettes.ascx" %>

Find a line below
<TABLE class="pagemaster" border="0" cellspacing="0" cellpadding="0">

Modify the line, remove width="100%" if existed, add align="center" as shown below
<TABLE class="pagemaster" border="0" cellspacing="0" cellpadding="0" align="center">

Find a line below
<TD class="skingradient" vAlign="middle" align="right" nowrap><dnn:SEARCH runat="server" id="dnnSEARCH" showWeb="True" showSite="True" /><dnn:LANGUAGE runat="server" id="dnnLANGUAGE" showMenu="False" showLinks="True" /></TD>

Add the lines inside the <td>, remove the ID="PALETTES1" and ID="SKINPREFS1" because Visual Studio added by itself

<TD class="skingradient" vAlign="middle" align="right" nowrap>
        <speerio:PALETTES runat="server" />&nbsp;&nbsp;<speerio:SKINPREFS runat="server" mode="Both" />&nbsp;&nbsp;
<dnn:SEARCH runat="server" id="dnnSEARCH" showWeb="True" showSite="True" /><dnn:LANGUAGE runat="server" id="dnnLANGUAGE" showMenu="False" showLinks="True" /></TD>

9. Login as host, select DNN-Blue, select Horizontal Menu – Speerio, and preview the skin

You can modify the skin named Vertical Menu - Full Width of DNN-Blue as shown above. I hope it help.

 
New Post
5/7/2008 4:34 PM
 

Please forgive me because I miss few files. I modified step 4 and add new step 5.

After I got the Speerio Skinergy from Ray, I could not find any instruction how to add the Speerio Skinnergy to existing DNN Skin. I played around and finally, I have an instruction how to add Speerio to DNN-Blue skin for anybody interest it.

1. Download from Aplus Covers Design Studios. At www.apluscovers.com/Downloads/Speerio_Skinergy.zip
2. Unzip and copy Speerio folders to <DNNRoot>
3. Modify the line 35 of <DNNRoot>/controls/Speerio/Skinergy/skinprefs.ascx
• from “Sub InjectStyleSheet(ByVal cookieId As String, ByVal suffix As String, small As Image, medium As Image, large As Image)
• to “Sub InjectStyleSheet(ByVal cookieId As String, ByVal suffix As String, small As System.Web.UI.WebControls.Image, medium As System.Web.UI.WebControls.Image, large As System.Web.UI.WebControls.Image)
4. Copy files palettes.xml and skincolor.css , folder sub-folder “prefs” from <DNNRoot>/Portals/_default/Skins/Speerio-Z/ to <DNNRoot>/Portals/_default/Skins/DNN-Blue/
5. Modify <DNNRoot>/Portals/_default/Skins/DNN-Blue/skin.css from
.pagemaster {
      width: 100%;
      height: 100%;    
      background-color: #fefefe;
}
To
.pagemaster {
      width: 770px;
      height: 100%;    
      background-color: #fefefe;
}
6. Edit <DNNRoot>/Portals/_default/Skins/DNN-Blue/prefs/layout-large.css to
.pagemaster{width:100%;}
7. Edit <DNNRoot>/Portals/_default/Skins/DNN-Blue/prefs/layout-medium.css to
.pagemaster{width:1024px;}

8. Copy existing files from <DNNRoot>/Portals/_default/Skins/DNN-Blue/ to new files (in the same folder)
• Copy “Horizontal Menu - Full Width.ascx” to “Horizontal Menu - Speerio.ascx
• Copy “Horizontal Menu - Full Width.htm” to “Horizontal Menu - Speerio.htm
• Copy “Horizontal Menu - Full Width.JPG” to “Horizontal Menu - Speerio.JPG
9. Edit file <DNNRoot>/Portals/_default/Skins/DNN-Blue/Horizontal Menu - Speerio.ascx
Find a line <%@ Register TagPrefix="dnn" TagName="DOTNETNUKE" Src="~/Admin/Skins/DotNetNuke.ascx" %>
Add 2 new lines below that line
<%@ Register TagPrefix="speerio" TagName="SKINPREFS" Src="~/controls/Speerio/Skinergy/skinprefs.ascx" %>
<%@ Register TagPrefix="speerio" TagName="PALETTES" Src="~/controls/Speerio/Skinergy/palettes.ascx" %>
Find a line below
<TABLE class="pagemaster" border="0" cellspacing="0" cellpadding="0">
Modify the line, remove width="100%" if existed, add align="center" as shown below
<TABLE class="pagemaster" border="0" cellspacing="0" cellpadding="0" align="center">
Find a line below
<TD class="skingradient" vAlign="middle" align="right" nowrap><dnn:SEARCH runat="server" id="dnnSEARCH" showWeb="True" showSite="True" /><dnn:LANGUAGE runat="server" id="dnnLANGUAGE" showMenu="False" showLinks="True" /></TD>
Add the lines inside the <td>, remove the ID="PALETTES1" and ID="SKINPREFS1" because Visual Studio added by itself
<TD class="skingradient" vAlign="middle" align="right" nowrap>
        <speerio:PALETTES runat="server" />&nbsp;&nbsp;<speerio:SKINPREFS runat="server" mode="Both" />&nbsp;&nbsp;
<dnn:SEARCH runat="server" id="dnnSEARCH" showWeb="True" showSite="True" /><dnn:LANGUAGE runat="server" id="dnnLANGUAGE" showMenu="False" showLinks="True" /></TD>
10. Login as host, select DNN-Blue, select Horizontal Menu – Speerio, and preview the skin
You can modify the skin named Vertical Menu - Full Width of DNN-Blue as shown above. I hope it help.
 
 
New Post
12/8/2008 5:43 AM
 

Hi,

 

i want to use this but with dnn 4.9.0 your standard skin is MinimalExtropy. In the skin.css file i can't find the pagemaster property.

Any tips and tricks?

Thanks.

 
New Post
12/8/2008 9:42 AM
 

This may be helpful for others. I've been using a CSS selector provided by Engage. I've found it very useful for text resizing and works well throughout my site with the use of cookies.

Have a look: http://www.engagesoftware.com/Blog/EntryID/145.aspx

 
Previous
 
Next
HomeHomeUsing DNN Platf...Using DNN Platf...Skins, Themes, ...Skins, Themes, ...How do I get Speerio Skinergy?How do I get Speerio Skinergy?


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