<?xml version="1.0"?><rss version="2.0" xmlns:wfw="http://wellformedweb.org/CommentAPI/" xmlns:slash="http://purl.org/rss/1.0/modules/slash/" xmlns:dc="http://purl.org/dc/elements/1.1/" xmlns:atom="http://www.w3.org/2005/Atom"><channel><title>Skinning</title><link>https://www.dnnhero.com/Forum/forumid/3/scope/threads</link><description></description><pubDate>Wed, 13 May 2026 19:32:02 GMT</pubDate><lastBuildDate>Wed, 09 Nov 2016 01:53:59 GMT</lastBuildDate><ttl>30</ttl><item><title>Automatically assign Page Skin with Template </title><pubDate>Wed, 09 Nov 2016 01:53:59 GMT</pubDate><dc:creator>Da</dc:creator><link>https://www.dnnhero.com/Forum/forumid/3/threadid/4240/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/3/threadid/4240/scope/posts</guid><description>Thanks again for your reply Aderson.&lt;br /&gt;&lt;br /&gt;It’s not really a ‘specific task’ but a simple and easy method to manage content for non technical users (Content Managers); something that a lot of other CMS’s are able to achieve but DNN cannot.&lt;br /&gt;&lt;br /&gt;I guess DNN is limited unlike other CMS’s where the user can just:&lt;br /&gt;1. create a new page, &lt;br /&gt;2. select a pre-defined template, and then start inputting content.&lt;br /&gt;&lt;br /&gt;With DNN it seems users need to:&lt;br /&gt;1. create a new page, &lt;br /&gt;2. select template, &lt;br /&gt;3. select skin, &lt;br /&gt;4. add modules, &lt;br /&gt;5. and/or module settings, and then start inputting content.&lt;br /&gt;It’s a cumbersome and impractical process for users; especially non-technical content managers.&lt;br /&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/3/threadid/4240/scope/posts</comments></item><item><title>Custom Page Templates are not loaded in DotNetNuke Page creation window</title><pubDate>Wed, 21 Oct 2015 09:59:36 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/3/threadid/3951/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/3/threadid/3951/scope/posts</guid><description>&lt;p&gt;Hi Fahimeh,&lt;/p&gt;
&lt;p&gt;It seems that DNN themselves are still working on this but your site is having:&lt;/p&gt;
&lt;p&gt;&lt;a href="https://dnntracker.atlassian.net/browse/DNN-7215" target="_blank" rel="nofollow"&gt;https://dnntracker.atlassian.net/brow...&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/3/threadid/3951/scope/posts</comments></item><item><title>Cannot Make Vertical Menu With DNN 7 - Please Help</title><pubDate>Mon, 08 Sep 2014 11:54:25 GMT</pubDate><dc:creator>Jean-Marie</dc:creator><link>https://www.dnnhero.com/Forum/forumid/3/threadid/1276/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/3/threadid/1276/scope/posts</guid><description>I finally figured out how to make a Vertical Menu for DNN 7 based on the DDRMenu. I had to create a new DDRMenu Template, and some new CSS entries. Not trivial at all, but it now works and replaces SolPart menu that stopped working (either original or SolPart under DDRMenu).&lt;br /&gt;&lt;br /&gt;In Skin ASCX File&lt;br /&gt;&lt;br /&gt;&lt;%@ Register TagPrefix="dnn" TagName="MENU" src="~/DesktopModules/DDRMenu/Menu.ascx" %&gt;&lt;br /&gt;&lt;dnn:MENU ID="DDRMenuVerticalMenu" MenuStyle="DDRMenuVerticalMenu" runat="server"&gt;&lt;/dnn:MENU&gt;&lt;br /&gt;&lt;br /&gt;Create a folder in Skin called "DDRMenuVerticalMenu". In that folder there will be two files: "DDRMenuVerticalMenu.txt" and "menudef.xml"&lt;br /&gt;&lt;br /&gt;DDRMenuVerticalMenu.txt Contents&lt;br /&gt;&lt;br /&gt;&lt;div&gt;&lt;br /&gt;&lt;ul id="sidebarmenu1"&gt;&lt;br /&gt;[*&gt;NODE]&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;&lt;/div&gt;&lt;br /&gt;[&gt;NODE]&lt;br /&gt;&lt;li&gt;&lt;br /&gt;[?ENABLED]&lt;br /&gt;&lt;a [?SELECTED]class="ActiveMenuItem"[/?] href="[=URL]" target="[=TARGET]" [?NODE] [/?]&gt;[=TEXT] [?NODE][/?]&lt;/a&gt;&lt;br /&gt;[?ELSE]&lt;br /&gt;&lt;a href="#" [?NODE] [/?]&gt;[=TEXT] [?NODE][/?]&lt;/a&gt;&lt;br /&gt;[/?]&lt;br /&gt;[?NODE]&lt;br /&gt;&lt;ul&gt;&lt;br /&gt;[*&gt;NODE]&lt;br /&gt;&lt;/ul&gt;&lt;br /&gt;[/?]&lt;br /&gt;&lt;/li&gt;&lt;br /&gt;[/&gt;]&lt;br /&gt;&lt;script type="text/javascript"&gt;&lt;br /&gt;var menuids=["sidebarmenu1"] //Enter id(s) of each Side Bar Menu's main UL, separated by commas&lt;br /&gt;function initsidebarmenu(){&lt;br /&gt;for (var x=0; x&lt;menuids.length; x++){&lt;br /&gt;var ultags=document.getElementById(menuids[x]).getElementsByTagName("ul")&lt;br /&gt;for (var t=0; t&lt;ultags.length; t++){&lt;br /&gt;ultags[t].parentNode.getElementsByTagName("a")[0].className+=" subfolderstyle"&lt;br /&gt;if (ultags[t].parentNode.parentNode.id==menuids[x]) //if this is a first level submenu&lt;br /&gt;ultags[t].style.left=ultags[t].parentNode.offsetWidth+"px" //dynamically position first level submenus to be width of main menu item&lt;br /&gt;else //else if this is a sub level submenu (ul)&lt;br /&gt;ultags[t].style.left=ultags[t-1].getElementsByTagName("a")[0].offsetWidth+"px" //position menu to the right of menu item that activated it&lt;br /&gt;ultags[t].parentNode.onmouseover=function(){&lt;br /&gt;this.getElementsByTagName("ul")[0].style.display="block"&lt;br /&gt;}&lt;br /&gt;ultags[t].parentNode.onmouseout=function(){&lt;br /&gt;this.getElementsByTagName("ul")[0].style.display="none"&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;for (var t=ultags.length-1; t&gt;-1; t--){ //loop through all sub menus again, and use "display:none" to hide menus (to prevent possible page scrollbars&lt;br /&gt;ultags[t].style.visibility="visible"&lt;br /&gt;ultags[t].style.display="none"&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;}&lt;br /&gt;if (window.addEventListener)&lt;br /&gt;window.addEventListener("load", initsidebarmenu, false)&lt;br /&gt;else if (window.attachEvent)&lt;br /&gt;window.attachEvent("onload", initsidebarmenu)&lt;br /&gt;&lt;/script&gt;&lt;br /&gt;&lt;br /&gt;Next the contents of "menudef.xml":&lt;br /&gt;&lt;br /&gt;&lt;?xml version="1.0" encoding="utf-8" ?&gt;&lt;br /&gt;&lt;manifest&gt;&lt;br /&gt;&lt;template&gt;DDRMenuVerticalMenu.txt&lt;/template&gt;&lt;br /&gt;&lt;/manifest&gt;&lt;br /&gt;&lt;br /&gt;Finally you need the following in the "skin.css" file&lt;br /&gt;&lt;br /&gt;/* Start Menu */&lt;br /&gt;&lt;br /&gt;.sidebarmenu ul{&lt;br /&gt;&lt;br /&gt;margin: 0;&lt;br /&gt;&lt;br /&gt;padding: 0;&lt;br /&gt;&lt;br /&gt;list-style-type: none;&lt;br /&gt;&lt;br /&gt;font: bold 9px Verdana;&lt;br /&gt;&lt;br /&gt;width: 130px; /* Main Menu Item widths */&lt;br /&gt;&lt;br /&gt;border-bottom: 1px solid #ccc;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;.sidebarmenu ul li{&lt;br /&gt;&lt;br /&gt;position: relative;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;/* Top level menu links style */&lt;br /&gt;&lt;br /&gt;.sidebarmenu ul li a{&lt;br /&gt;&lt;br /&gt;display: block;&lt;br /&gt;&lt;br /&gt;overflow: auto; /*force hasLayout in IE7 */&lt;br /&gt;&lt;br /&gt;color: white;&lt;br /&gt;&lt;br /&gt;text-decoration: none;&lt;br /&gt;&lt;br /&gt;padding: 6px;&lt;br /&gt;&lt;br /&gt;border-bottom: 1px solid #778;&lt;br /&gt;&lt;br /&gt;border-right: 1px solid #778;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;.sidebarmenu ul li a:link, .sidebarmenu ul li a:visited, .sidebarmenu ul li a:active{&lt;br /&gt;&lt;br /&gt;background-color: #012D58; /*background of tabs (default state)*/&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;.sidebarmenu ul li a:visited{&lt;br /&gt;&lt;br /&gt;color: white;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;.sidebarmenu ul li a:hover{&lt;br /&gt;&lt;br /&gt;background-color: black;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;/*Sub level menu items */&lt;br /&gt;&lt;br /&gt;.sidebarmenu ul li ul{&lt;br /&gt;&lt;br /&gt;position: absolute;&lt;br /&gt;&lt;br /&gt;width: 130px; /*Sub Menu Items width */&lt;br /&gt;&lt;br /&gt;top: 0;&lt;br /&gt;&lt;br /&gt;visibility: hidden;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;.sidebarmenu a.subfolderstyle{&lt;br /&gt;&lt;br /&gt;background: url(Menu_Arrow.gif) no-repeat 97% 50%;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;div.sidebarmenu li a.ActiveMenuItem {&lt;br /&gt;&lt;br /&gt;color: red;&lt;br /&gt;&lt;br /&gt;}&lt;br /&gt;&lt;br /&gt;/* Holly Hack for IE \*/&lt;br /&gt;&lt;br /&gt;* html .sidebarmenu ul li { float: left; height: 1%; }&lt;br /&gt;&lt;br /&gt;* html .sidebarmenu ul li a { height: 1%; }&lt;br /&gt;&lt;br /&gt;/* End */&lt;br /&gt;&lt;br /&gt;/* End Menu */</description><comments>https://www.dnnhero.com/Forum/forumid/3/threadid/1276/scope/posts</comments></item><item><title>skolar font</title><pubDate>Fri, 29 Aug 2014 09:44:15 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/3/threadid/1166/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/3/threadid/1166/scope/posts</guid><description>&lt;p&gt;Hi Surya,&lt;/p&gt;
&lt;p&gt;To be honest I'm not sure. I don't think this is a particular problem with your DNN site. This is a generic problem that I don'[t have much experience.&lt;/p&gt;
&lt;p&gt;Sorry,&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/3/threadid/1166/scope/posts</comments></item><item><title>Module Edit Icons not scrolling with modules in edit mode</title><pubDate>Fri, 22 Aug 2014 09:48:19 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/3/threadid/1237/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/3/threadid/1237/scope/posts</guid><description>&lt;p&gt;Sent it over, I will have a look&amp;nbsp;aderson at dnnhero dot com&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/3/threadid/1237/scope/posts</comments></item><item><title>How to get DDR Menu to output root level element of subnav</title><pubDate>Thu, 21 Aug 2014 10:26:55 GMT</pubDate><dc:creator>Brian</dc:creator><link>https://www.dnnhero.com/Forum/forumid/3/threadid/1234/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/3/threadid/1234/scope/posts</guid><description>&lt;p&gt;Hi Armand,&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;The code I posted was just an example but I was able to figure out what I needed it to do. I made a couple of changes to the NodeSelector call then modified a token template to get it to output what I needed. Thanks for your help!&lt;/p&gt;
&lt;p&gt;&lt;br /&gt;
&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/3/threadid/1234/scope/posts</comments></item><item><title>How to change dnn default fonts any idea..</title><pubDate>Wed, 09 Jul 2014 17:42:21 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/3/threadid/1168/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/3/threadid/1168/scope/posts</guid><description>&lt;p&gt;Hi Surya,&lt;/p&gt;
&lt;p&gt;I have answered that at&amp;nbsp;&lt;/p&gt;
&lt;p&gt;http://www.dnnhero.com/Forum/tabid/261/forumid/3/threadid/1166/scope/posts/Default.aspx&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/3/threadid/1168/scope/posts</comments></item><item><title>Problem with skin using DNN Smart Mobile.Redirect Module</title><pubDate>Tue, 03 Jun 2014 20:25:44 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/3/threadid/1126/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/3/threadid/1126/scope/posts</guid><description>Good one Paul!</description><comments>https://www.dnnhero.com/Forum/forumid/3/threadid/1126/scope/posts</comments></item><item><title>Skins Location </title><pubDate>Mon, 12 May 2014 11:56:59 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/3/threadid/1093/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/3/threadid/1093/scope/posts</guid><description>&lt;p&gt;Hi Florence,&lt;/p&gt;
&lt;p&gt;You should definitely keep them under Portals/_default/Skins/ folder. This way you will be able to share them across all Portals.&lt;/p&gt;
&lt;p&gt;In case you want to make a skin only available to a particular portal, them you should create it under Portals/[PORTAL ID]/Skins/&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/3/threadid/1093/scope/posts</comments></item><item><title>JQUERY Conflicts - Using Newer JQuery in DNN Modules</title><pubDate>Thu, 23 Jan 2014 12:24:52 GMT</pubDate><dc:creator>Robert</dc:creator><link>https://www.dnnhero.com/Forum/forumid/3/threadid/214/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/3/threadid/214/scope/posts</guid><description>&lt;p&gt;I may be able to create that video soon. &lt;/p&gt;
&lt;p&gt;I'm having the same issue, and have found many leads.&lt;/p&gt;
&lt;p&gt;Once I have it fixed, I'll 'generisize' the process for converting any Responsive HTML5 template into a DNN 7 skin&lt;/p&gt;
&lt;p&gt;or may be just charge people? lol...jk&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/3/threadid/214/scope/posts</comments></item><item><title>Bootstrap JQuery Conflicts with DNN</title><pubDate>Tue, 21 Jan 2014 07:55:14 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/3/threadid/778/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/3/threadid/778/scope/posts</guid><description>&lt;p&gt;Hi Besana,&lt;/p&gt;
&lt;p&gt;Not sure how to solve your situation but I have a few suggestions:&lt;/p&gt;
&lt;p&gt;1 - Check out this &lt;a href="http://www.chrishammond.com/blog/itemid/2644/introducing-hammerflex-a-new-open-source-skin-for.aspx" target="_blank"&gt;open source skin based on Bootstrap 3&lt;/a&gt;.&amp;nbsp;They must have solved this problem;&lt;/p&gt;
&lt;p&gt;2 - These guys published a nice video on &lt;a href="https://www.dnncreative.com/TrainingTutorials/SkinningTutorials/Bootstrap3SkinningforDNN/tabid/706/Default.aspx" target="_blank"&gt;How to Create a&amp;nbsp;Responsive Bootstrap 3 Skin for DotNetNuke&lt;/a&gt;;&lt;/p&gt;
&lt;p&gt;I hope this helps you.&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/3/threadid/778/scope/posts</comments></item><item><title>Problems with Solpart and IE10</title><pubDate>Mon, 09 Sep 2013 13:36:32 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/3/threadid/494/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/3/threadid/494/scope/posts</guid><description>&lt;p&gt;Hi Guilherme,&lt;/p&gt;
&lt;p&gt;I don't think there is a solution other than upgrading DNN and replacing the SOLpart by the DDR menu.&lt;/p&gt;
&lt;p&gt;I have seem that quit a lot in the DNN forums and there doesn't seem to be another solution.&lt;/p&gt;
&lt;p&gt;Check here:&lt;/p&gt;
&lt;p&gt;&lt;a href="http://www.dnnsoftware.com/forums/forumid/109/postid/470677/scope/posts" target="_blank" rel="nofollow"&gt;http://www.dnnsoftware.com/forums/for...&lt;/a&gt;&lt;br /&gt;
&lt;br /&gt;
&lt;/p&gt;
&lt;p&gt;Regards,&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/3/threadid/494/scope/posts</comments></item><item><title>Menu with accordion template</title><pubDate>Fri, 05 Jul 2013 15:36:45 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/3/threadid/380/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/3/threadid/380/scope/posts</guid><description>&lt;p&gt;Hi Gino,&lt;/p&gt;
&lt;p&gt;I have not tried that yet, but you should check the 3 part article written by Armand: &lt;a href="http://www.dnnhero.com/Article/tabid/212/ArticleID/28/Beginning-XSLT-with-DDRMenu-for-DotNetNuke-Part-3-3.aspx"&gt;http://www.dnnhero.com/Article/tabid/...&lt;/a&gt;&lt;/p&gt;
&lt;p&gt;This should get you up to speed on what needs to change on the XSLT file in order to make multiple levels.&lt;/p&gt;
&lt;p&gt;Best regards,&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/3/threadid/380/scope/posts</comments></item><item><title>Background Image - HTML module</title><pubDate>Thu, 08 Nov 2012 12:01:49 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/3/threadid/173/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/3/threadid/173/scope/posts</guid><description>&lt;p&gt;Good progress Dave! Congratulations!&lt;/p&gt;
&lt;p&gt;&amp;nbsp;Cheers,&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/3/threadid/173/scope/posts</comments></item><item><title>Dark K Mobile - Sub Menus</title><pubDate>Tue, 18 Sep 2012 14:29:54 GMT</pubDate><dc:creator>Stephen</dc:creator><link>https://www.dnnhero.com/Forum/forumid/3/threadid/50/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/3/threadid/50/scope/posts</guid><description>&lt;p&gt;Hi Dave/Aderson,&lt;/p&gt;
&lt;p&gt;Regarding browser market, It's a good point Dave, but I assume it's not just older IE browser versions that don't support CSS3.&lt;/p&gt;
&lt;p&gt;Regarding levels of navigation, If possible I would like to be able to cater for any request a customer might make.&lt;br /&gt;
Looking at demo of one of the other adaptive skins on dnnhero.com&lt;br /&gt;
&lt;a href="http://www.dnnskin.net/social-silver/en-us/home.aspx" target="_blank" rel="nofollow"&gt;http://www.dnnskin.net/social-silver/...&lt;/a&gt;&lt;br /&gt;
It shows 3 levels for a mobile device, I think it's quite a good the way it's displayed. Though I take Aderson's point about simplifying the site.&lt;br /&gt;
&lt;br /&gt;
One thing that did occur to me, is that it's possible to 'add an existing module' from the host menu. So if you go down the separate site root, you can use the same module instances, the contents will be synchronised but the modules can be arranged differently.&lt;/p&gt;
&lt;p&gt;Another&amp;nbsp;advantage the responsive skin has is that you don't have the $360.00 per year per site cost for the device detection license, assuming you're using the community edition that is.&lt;/p&gt;
&lt;p&gt;I look forward to seeing the interview with the skin designer when it's published.&lt;/p&gt;
&lt;p&gt;Maybe some videos on making a site responsive would be a good idea.&lt;/p&gt;
&lt;p&gt;Best Regards,&lt;/p&gt;
&lt;p&gt;Steve&lt;/p&gt;
&lt;p&gt;&amp;nbsp;&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/3/threadid/50/scope/posts</comments></item><item><title>Creating my own skin</title><pubDate>Wed, 05 Sep 2012 09:42:12 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/3/threadid/54/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/3/threadid/54/scope/posts</guid><description>&lt;p&gt;Hi Noora,&lt;/p&gt;
&lt;p&gt;You don't need Visual Studio for that. I would recommend this video so you can get to know how to create skins:&amp;nbsp;http://www.dnncreative.com/TrainingTutorials/SkinningTutorials/HowtobuildSkinsforDNN6x/tabid/651/Default.aspx&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/3/threadid/54/scope/posts</comments></item><item><title>Modify Module Title Font</title><pubDate>Mon, 27 Aug 2012 09:36:57 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/3/threadid/44/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/3/threadid/44/scope/posts</guid><description>&lt;p&gt;Hi Donald,&lt;/p&gt;
&lt;p&gt;The key is to find which container you are using. Can you give me the container name or at least describe how it looks like?&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/3/threadid/44/scope/posts</comments></item><item><title>Dark Knight Mobile</title><pubDate>Fri, 24 Aug 2012 11:00:11 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/3/threadid/41/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/3/threadid/41/scope/posts</guid><description>Great tip! Thank you Dave!</description><comments>https://www.dnnhero.com/Forum/forumid/3/threadid/41/scope/posts</comments></item><item><title>Stronghold skin</title><pubDate>Tue, 21 Aug 2012 08:59:58 GMT</pubDate><dc:creator>Aderson Oliveira</dc:creator><link>https://www.dnnhero.com/Forum/forumid/3/threadid/19/scope/posts</link><guid>https://www.dnnhero.com/Forum/forumid/3/threadid/19/scope/posts</guid><description>&lt;p&gt;Ok, no problem. Do this:&lt;/p&gt;
&lt;p&gt;1 - Open the CSS file \Portals\_default\Skins\Stronghold\styles\style.css&lt;/p&gt;
&lt;p&gt;2 - Find this 'min-height: 400px;' (remove the quotes to search)&lt;/p&gt;
&lt;p&gt;3 - Change 400px to, let's say, 200px - This will make the vertical space shorter.&lt;/p&gt;
&lt;p&gt;4 - Save the file.&lt;/p&gt;
&lt;p&gt;5 - Change to another number if you need.&lt;/p&gt;
&lt;p&gt;This should do it.&lt;/p&gt;
&lt;p&gt;Cheers,&lt;/p&gt;
&lt;p&gt;Aderson&lt;/p&gt;</description><comments>https://www.dnnhero.com/Forum/forumid/3/threadid/19/scope/posts</comments></item><item><title>More...</title><wfw:link>https://www.dnnhero.com/DesktopModules/Forum/Forum_Rss.aspx?forumid=3&amp;mid=858&amp;tabid=261&amp;threadspage=2</wfw:link></item></channel></rss>