Hello SiliconSlick
In your skin.css file add this css style, you can name it whatever you like and change the height and width properties to suit.
#mainContent {height: 500px; width: 500px; overflow: auto; }
In the folder containing your skin files you will see a Blue.ascx, MySitePage.html or MySitePage.ascx or whatever the name of the skin that you intend to use.
Open the MySkin.ascx file with Dreamweaver, notepad or any similar editing and you should see:
<div id="contentpane" runat="server" visible="false" ></div>
Add the css ID to the around the main content pane:
<div id="mainContent">
<div id="contentpane" runat="server" visible="false" ></div>
<div>
You will need to do this on each of the skin files in your folder.
Alternatively you can style the ID of the content pane directly and you will not need to add the surrounding DIV tags, as this will effect all your skin files. In your skin.css file add this:
#dnn_contentpane {height: 500px; width: 500px; overflow: auto; }
I hope that is a bit clearer. If you want to learn more about skinning the link below has some very good tutorials:
www.dnncreative.com
Lynn