Thank you for purchasing my theme. If you have any questions that are beyond the scope of this help file, please feel free to email via my user page contact form here. Thanks so much!
To install this skin you must have a working version of DotNetNuke already installed. If you need help installing DotNetNuke, follow the instructions in Video-Library. Below are all the useful links for DotNetNuke information.
When you purchase our theme, you will receive one large .zip file that contains everything inside. Unzip that file to get all the content inside. Below is a full list of everything that is included along with a brief description of each item. See the corresponding sections for info on installing the theme.
Notice: If you bought the theme from DNN Store (http://store.dnnsoftware.com), then none of module files are included in the download package. It only include DNN Skins, DNNGo_xPlugin, Page Templates and PSD files. If you need to purchase modules, please contact us via email (dnnskindev@gmail.com).
To use skins and modules, you must be running DNN 7.x or higher. We have tested it with DNN7.x and DNN8.x.
Exported page templates will allow you to reproduce our live demo pages. We'll reproduce the home page as an example.
The product contains page templates for all pages in the live demo, you can copy our demo site by importing the page templates.
You can click the xPlugin button to go to settings page, and then choose different header styles in Header Layout section.
Each header includes very rich setting options, you can modify the color of whatever you would like to . For example: text color, font size and background color etc.
Each header includes three kinds of layouts, which are Full, Boxed and BG-Boxed.
This skin contains Full Layout and Boxed Layout, you can set through Content Layout section.
With Boxed Layout applied, you can still set page background, it will display around the content. You can click link to check demo url of boxed layout.
The background can be set as static or rotating image or any solid color for you choose to apply, also you can set different background images for different pages.
Go to Content Layout settings, you can set width for skin on different devices, for example, you can set a width of 1400px for skin in over-large screen, so width of the content section is 1400px, you can also set auto for it, so width of content section is the same as screen.
It includes settings for multiple kinds of pane layouts, for example, layout used for homepage is 0-12-0, layout used for InsidePage-leftmenu is 3-9-0, and layout used for InsidePage-rightmenu is 9-3-0.
You can set the page loading animation.
You can select to have this feature turned on or off.
You can set the font color and size, link color, the color of H1-H6 etc of the content area.
Here you can set style for leftmenu and rightmenu.
You can create Google Map easily following these steps:
It includes 18 homepages in the skin, each homepage is invoking individual css separately, for example, what being invoked by HomePage01 is HomePage01.css, and what being invoked by HomePage02 is HomePage02.css.
If you need to apply codes of HomePage02 in HomePage01, you will have to check both HomePage01.css and HomePage02.css, as shown in image below:
You can change the text color, background color and background image etc for each Breadcrumb layout.
You can create a new skin through xPlugin. Please note the new skin name shouldn't be the same as the current skin.
The skin sub menus contain two types-Standard Menu and MegaMenu.
Standard Menu is the default menu type, the sub menus will be set to display in one column only, as shown in screen shot below:
MegaMenu will set sub menus to display in multiple columns, also you can display HTML module or third party module in sub menus, as shown below:
You can set the MegaMenu as per steps below:
You can set menu typography icon through the settings below:
You can set typography icon in Icon option under Pages setting, each page has separate icon settings.
You can choose the icon you need through dropdown options, you can also find the icon you need through text filter.
It is default by xplugin that setting is only valid to one skin. If you need to apply the settings to all skins, you will have to select Global for Scope in Skin Settings, as shown in image below:
You can click the link to check Coming Soon demo. Coming Soon
Below is the screen shot:
You can create the coming soon page easily following these steps:
Skin is using bootstrap framework. You will get to know more through this url. Link
dnn_layout
is the page content framework:
Device width | Width of content area |
Large devices Desktops (≥1200px) | 1170px |
Medium devices Desktops (≥992px) | 970px |
Small devices Tablets (≥768px) | 750px |
Extra small devices Phones (<768px) | auto |
content_mid
is the spacing between both sides of the page :
Device width | Spacing |
Large devices Desktops (≥1200px) | 30px |
Medium devices Desktops (≥992px) | 20px |
Small devices Tablets (≥768px) | 15px |
Extra small devices Phones (<768px) | 15px |
<div class="dnn_layout"> <div class="content_mid clearfix"> content ... </div> </div>
<!-- Tablet and desktop devices are 50% wide, mobile device is 100% wide --> <div class="row"> <div class="col-sm-6">.col-sm-6</div> <div class="col-sm-6">.col-sm-6</div> </div> <!-- Stack the columns on mobile by making one full-width and the other half-width --> <div class="row"> <div class="col-xs-12 col-md-8">.col-xs-12 .col-md-8</div> <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div> </div> <!-- Columns start at 50% wide on mobile and bump up to 33.3% wide on desktop --> <div class="row"> <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div> <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div> <div class="col-xs-6 col-md-4">.col-xs-6 .col-md-4</div> </div> <!-- Columns are always 50% wide, on mobile and desktop --> <div class="row"> <div class="col-xs-6">.col-xs-6</div> <div class="col-xs-6">.col-xs-6</div> </div> <!-- Add the extra clearfix for only the required viewport --> <div class="clearfix visible-xs-block"></div>
Extra small devices Phones (<768px) | Small devices Tablets (≥768px) | Medium devices Desktops (≥992px) | Large devices Desktops (≥1200px) | |
---|---|---|---|---|
.visible-xs |
Visible | Hidden | Hidden | Hidden |
.visible-sm |
Hidden | Visible | Hidden | Hidden |
.visible-md |
Hidden | Hidden | Visible | Hidden |
.visible-lg |
Hidden | Hidden | Hidden | Visible |
.hidden-xs |
Hidden | Visible | Visible | Visible |
.hidden-sm |
Visible | Hidden | Visible | Visible |
.hidden-md |
Visible | Visible | Hidden | Visible |
.hidden-lg |
Visible | Visible | Visible | Hidden |
Visible in mobile devices and hidden in other devices <div class="visible-xs">content...</div> Visible in other devices and hidden in mobile devices <div class="hidden-xs">content...</div>
/*page Spacing*/ .mt-10 {margin-top: 10px;} .mb-10 {margin-bottom: 10px;} .pt-10 {padding-top: 10px;} .pb-10 {padding-bottom: 10px;} .mt-20 {margin-top: 20px;} .mb-20 {margin-bottom: 20px;} .pt-20 {padding-top: 20px;} .pb-20 {padding-bottom: 20px;} .mt-30 {margin-top: 30px;} .mb-30 {margin-bottom: 30px;} .pt-30 {padding-top: 30px;} .pb-30 {padding-bottom: 30px;} .mt-40 {margin-top: 40px;} .mb-40 {margin-bottom: 40px;} .pt-40 {padding-top: 40px;} .pb-40 {padding-bottom: 40px;} .mt-50 {margin-top: 50px;} .mb-50 {margin-bottom: 50px;} .pt-50 {padding-top: 50px;} .pb-50 {padding-bottom: 50px;} .mt-60 {margin-top: 60px;} .mb-60 {margin-bottom: 60px;} .pt-60 {padding-top: 60px;} .pb-60 {padding-bottom: 60px;}
You can set Font Family throughDNNGo.xPlugin > Content Layout > Content Style
<div class="default_family">content...</div>Special Font Family 1:Extend font, you can call through class.
<div class="special_family_1">content...</div>Special Font Family 2:Extend font, you can call through class.
<div class="special_family_2">content...</div>Default Font Size :Used as page default font size, it is also possible to call through class.
<div class="default_size">content...</div>Big Font Size : Extend font size 1, you can call through class.
<div class="big_size">content...</div>Small Font Size : Extend font size 2, you can call through class.
<div class="small_size">content...</div>Default Line Height : Used as page default line-height, it is also possible to call through class.
<div class="default_line_height">content...</div>Small Line Height :Extend font size 1, you can call through class.
<div class="small_line_height">content...</div>Big Line Height :Extend font size 2, you can call through class.
<div class="big_line_height">content...</div>
This skin contains a lot of short codes, it is very easy for you to use even you know nothing about js and css, all you need to do is just copying the short codes to HTML module.
You can see this module in the banner section on the home page, we will guide you step by step to set up the module as the same as our demo site:
You can create the form through this module, click this link so you can check the module instruction details.
If you have any questions or suggestions about modules/skins or modules/skins installation process, please feel free to contact us.