QUOTE(JimDavis-Hicks @ August 3 2007, 08:23 AM)

thanks so much.
i keep hearing about bigger file size etc. but i see all these sites where the screen is huge and you see a video right in front of you that is clear, big and most importantly viewable (meaning I can read the text in it etc.)
like dj's creating freedom site, his video intro is BIG.
i want a big one so you can read text and see the stuff in it bigger than a 2x3
Piece of cake. If using blogger (the others I am just not 100% about - I assume they are the same) simply change your HTML slightly. Change it to this:
/* Outer-Wrapper
----------------------------------------------- */
#outer-wrapper {
width: 1024px;
margin:0 auto;
padding:10px;
text-align:left;
font: normal normal 100% 'Trebuchet MS',Trebuchet,Verdana,Sans-serif;
}
#main-wrapper {
width: 730px;
float: left;
word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
overflow: hidden; /* fix for long non-text content breaking IE sidebar float */
}
#sidebar-wrapper {
width: 220px;
float: right;
word-wrap: break-word; /* fix for long text breaking sidebar float in IE */
overflow: hidden; /* fix for long non-text content breaking IE sidebar float */
}
/* Headings
----------------------------------------------- */
This should work. Feel free to tweak the sections. You could make it wider than 1024, up to you - many laptops cap out around 1024 to 1280.
Quick Edit: You can look at my blog and easily see the before & after of when I figured this out.