Admin page Alignment
Last Post 05/26/2008 4:04 AM by David Thomson. 1 Replies.
Author Messages
David Thomson
Posts:10


--
05/26/2008 3:45 AM
    I have created a skin for my dotnetnuke site using tables. Everything looks fine until I log in and access any of the admin pages. now everything is center aligned.
    I have looked at the source code for the page and have found a align=center in the td that holds the container.
    < !-- Start_Module_354 -- >< div id="dnn_ctr354_ModuleContent" >< br >   < div id="dnn_ctr354_SiteSettings_UP" >
    but this does not exist in any of my source code for the skin.
    Is there some setting that I need to fix this as it makes everything a little hard read.
    David Thomson
    Posts:10


    --
    05/26/2008 4:04 AM
    I figured it out all i had to do was create css entry
    #mainContentTable td{
    text-align:left;
    }
    where main content table is the main page table.


    ---