Small width layout Medium width layout Maximum width layout Small text Medium text Large text
     Search
Downloads Downloads Directory Directory Forums Forums Forge Forge Blogs Blogs        Marketplace Marketplace Careers Program Careers
Community › Forums Register  |  

Maximum ASP
  Need Help?  
Professional technical support for DotNetNuke is available from DotNetNuke Corporation.
 


  Ads  
Engage Software - Training Partner for DotNetNuke
 


  Sponsors  

Meet Our Sponsors

Mad Development is a full service interactive agency focusing on the merge of design, technology, e-commerce, and affiliate marketing by providing total website solutions.
AspDotNetStoreFront - E-Commerce by Design - The Leading ASP.NET shopping cart platform for developers!
Click here to go to dev.live.com for Windows Live developer resources
SteadyRain
DataSprings - Great Ideas. Always Flowing.
R2integrated - formerly bi4ce
 


DotNetNuke Forums
 
  Forum  General DotNetN...  Make it Hot! ( ...  skins seem to have a mind of its own
Previous Previous
 
Next Next
New Post 6/10/2008 7:31 AM
User is offline Tom Pearson
70 posts
www.coppernreef.com
10th Ranked


skins seem to have a mind of its own 

ok...im tryin to do a simple skin where the body is tightly fitting inthe body...no boarder

no matter what i seem to not be able to remove a small gap

i have specified the exact width of 700 all in my ascx page for each table and in my css file. I have also taken a container and simplied it with the same width

is there a defualt skin file that dnn inherits from??

 
New Post 6/10/2008 7:57 AM
User is offline Brandon Haynes
550 posts
everysport.net
8th Ranked


Re: skins seem to have a mind of its own 

Hi Tom,

In addition to any skin-specific .css files, DNN will deploy a Default.css and portal-specific Portal.css file.  It could be one of these that are causing your problem.  If you have a public-facing link to the problem, post it here for us to look at.

To debug these sorts of problems, I recommend using either the IE or Firefox web developer toolbar.  They allow you to click on the element in question, trace the applied styles, and tweak the settings in real-time on your page.  Typically the use of one of these tools makes debugging these sorts of problems trivial. 

Hope this helps!

Brandon


Brandon Haynes
BrandonHaynes.org
 
New Post 6/10/2008 8:34 AM
User is offline Tom Pearson
70 posts
www.coppernreef.com
10th Ranked


Re: skins seem to have a mind of its own 

i installed that...it does show me but still didnt point the problem out....does it matter my skin only has the css, ascx, and xml (plus media folder)? do i need that html file?

heres my skin file: as you see...i specify the width to be 700 throughout yet my body/content still have a gap of bout 5px

[code]

<%@ Control language="vb" CodeBehind="~/admin/Skins/skin.vb" AutoEventWireup="false" Explicit="True" Inherits="DotNetNuke.Skin" %>
<%@ Register TagPrefix="dnn" TagName="CURRENTDATE" Src="~/Admin/Skins/CurrentDate.ascx" %>
<%@ Register TagPrefix="dnn" TagName="LOGIN" Src="~/Admin/Skins/Login.ascx" %>
<%@ Register TagPrefix="dnn" TagName="USER" Src="~/Admin/Skins/User.ascx" %>
<%@ Register TagPrefix="dnn" TagName="LOGO" Src="~/Admin/Skins/Logo.ascx" %>
<%@ Register TagPrefix="dnn" TagName="SOLPARTMENU" Src="~/Admin/Skins/SolPartMenu.ascx" %>
<%@ Register TagPrefix="dnn" TagName="COPYRIGHT" Src="~/Admin/Skins/Copyright.ascx" %>
<%@ Register TagPrefix="dnn" TagName="HOSTNAME" Src="~/Admin/Skins/HostName.ascx" %>
<%@ Register TagPrefix="dnn" TagName="PRIVACY" Src="~/Admin/Skins/Privacy.ascx" %>
<%@ Register TagPrefix="dnn" TagName="LINKS" Src="~/Admin/Skins/Links.ascx" %>


<TABLE class="pagemaster" align="center" width="700px">
    <TR width="700px">
        <TD valign="middle" width="700px">
      <TABLE class="skinmaster" border="0" cellspacing="0" cellpadding="0" width="700px">
       
  <TR width="700px">
            <TD align="center" valign="top" class="contentpane" id="ControlPanel" runat="server"></TD>
        </TR>
        <TR width="700px">
            <TD valign="top" width="700px">

        <TABLE class="skinheader" cellSpacing="0" cellPadding="0" border="0" width="700px">
            <TR width="700px">
                <TD height="140" width="700px" vAlign="middle" align="left"><dnn:LOGO runat="server" id="dnnLOGO" /></TD>
            </TR>
        </TABLE>
        <TABLE class="MenuTab" cellSpacing="0" cellPadding="0" width="700px" height="40" border="0" align="center">
            <TR width="700px">
                <TD vAlign="middle" align="center" class="MenuTab" width="700" height="40"><dnn:SOLPARTMENU runat="server" id="dnnSOLPARTMENU" separatorcssclass="MySeparator" backcolor="#ffffff" separatecss="true"  rootmenuitemactivecssclass="ActiveRootTab" submenuitemactivecssclass="ActiveSubTab" rootmenuitemselectedcssclass="SelectedRootTab" submenuitemselectedcssclass="SelectedSubTab" rootmenuitembreadcrumbcssclass="BreadcrumbRootTab" submenuitembreadcrumbcssclass="BreadcrumbSubTab" rootmenuitemcssclass="RootTab" submenuitemcssclass="SubTab" usearrows="False"/></TD>
            </TR>
        </TABLE>
           
        <TABLE cellspacing="0" cellpadding="0" border="0" class="body" width="700px">
            <TR width="700px">
               
                <TD class="contentpane" id="ContentPane" runat="server" valign="top" align="center" width="700px"></TD>
               
            </TR>
        </TABLE>


        </TD>
    </TR>
    </TABLE>
        </TD>
    </TR>
    <TR id="foot" valign="texttop" align="center" width="700px">
        <TD valign="top" align="center" height="10" width="700px"><font size="1.5" face="Arial, Helvetica, sans-serif" color="#000000">150-153rd Ave., Suite 303 St. Petersburg. Fl 33708 Toll Free 800.719.6227 (NBAS) Fax 866.654.7533</font></TD>
 </TR>
 <T width="700px"R>
  <TD valign="top" align="center" height="10" width="700px"><font size="1.5" face="Arial, Helvetica, sans-serif" color="#000000"><dnn:LOGIN runat="server" id="dnnLOGIN" text="Staff Login" /></font></TD>
    </TR>
</TABLE>

[/code]

 

 

 
New Post 6/10/2008 9:01 AM
User is offline Tom Pearson
70 posts
www.coppernreef.com
10th Ranked


Re: skins seem to have a mind of its own 

i seemed to have fixed it....what a pain lol

the css file had values for the menu buttons in px and i shorten them till it tightened everything up...also the iframe seems to have its own mind as well..i just imported the media mod and it did the job

ill post once i get this live

 
New Post 6/10/2008 9:07 AM
User is offline Brandon Haynes
550 posts
everysport.net
8th Ranked


Re: skins seem to have a mind of its own 

Hi Tom,

Glad to hear you were able to correct your problem.  Remember, if you have child elements that exceed a parent's fixed width, you can always instruct the browser to hide the extra width by setting the OVERFLOW css attribute to "hide".

Brandon


Brandon Haynes
BrandonHaynes.org
 
Previous Previous
 
Next Next
  Forum  General DotNetN...  Make it Hot! ( ...  skins seem to have a mind of its own
 


Forum Policy

These Discussion Forums are dedicated to the discussion of the DotNetNuke Web Application Framework.

For the benefit of the community and to protect the integrity of the project, 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 DotNetNuke.
2. Discussion or promotion of DotNetNuke product releases under a different brand name are strictly prohibited.
3. No Flaming or Trolling.
4. No Profanity, Racism, or Prejudice.
5. Site Moderators have the final word on approving/removing a thread or post or comment.
6. English language posting only, please.

 


R2i - Delivering Serious DNN Services & Solutions
Award Winning Design, Skin construction, Custom Modules and Consulting Services for the Enterprise organization. R2i is the DNN:Map module Project Lead and one of the largest DNN service providers with offices in New York City, Virginia and Baltimore.
www.bi4ce.com
"SalarO" Skinning Graphic Design Branding Services
SalarO develops packaged & custom skins for your DNN at prices you can afford. SalarO is also developing Module development, Hosting, Branding/Logo design as well as Content Transfer Services to complement the core skinning solutions.
www.salaro.com
Data Springs Inc. - Module Development
Data Springs is a leader in the DNN community offering high quality modules, custom module development, enhancements to the DNN core product and overall DNN support.
www.datasprings.com

DotNetNuke Corporation   Terms Of Use  Privacy Statement
DotNetNuke®, DNN®, and the DotNetNuke logo are trademarks of DotNetNuke Corporation
Hosted by MaximumASP