DotNetNuke 2.0 default skin tweaks

I've made a few tweaks to DNN 2.0 for my test site that I am using. They are as follows.

If you've made the Body background in your default portal.css file to a dark background color you lose the text on the Tab Admin strip when logged in as a admin or host user. To fix this I added the following colored text to this page.

Admin/Skins/Admin.ascx

<%@ Control language="vb" CodeBehind="Admin.ascx.vb" AutoEventWireup="false" Explicit="True" Inherits="DotNetNuke.Skins.Admin" %>
<%@ Register TagPrefix="DNN" TagName="LinkActions" Src="~/admin/Containers/LinkActions.ascx"%>
<table width="100%" border="0" summary="Table for design" id="Table2" style="border-top:1px #CCCCCC dotted;border-bottom:1px #CCCCCC dotted;border-right:1px #CCCCCC dotted;border-left:1px #CCCCCC dotted;background-color: white;">

You also get the same effect when editing some modules with the default skin, so change the following (red) on this page

<table cellspacing="0" cellpadding="4" border="0">
       <tr height="*" valign="top">
        <td id="ContentPane" runat="server" valign="top" align="center" class="ContentPane"></td>
       </tr>
      </table>

 

I believe Properly created skins wouldn't have these issues, but the default skin for DNN 2.0 looks to just be missing a few things. Hope this helps you out.

1 Comment

Comments have been disabled for this content.