Link to home
Start Free TrialLog in
Avatar of mcrossland
mcrosslandFlag for United States of America

asked on

Page layout from Template

I am making a web page for a friend with Microsoft Expressions Web 2.
I uploaded it here  www.primetimegraphics.com
My question is, where the heck are the settings that control the width of the page (the part not in yellow)?
The template is kind of slim and I would like the entire heading, content, footer to be wider.
I'm used to working with tables and never have worked with this particular format before.  
I would like to learn.  :)

Thanks,
mc
ASKER CERTIFIED SOLUTION
Avatar of wickedpassion
wickedpassion
Flag of United Kingdom of Great Britain and Northern Ireland image

Link to home
membership
This solution is only available to members.
To access this solution, you must be a member of Experts Exchange.
Start Free Trial
Sorry should have said in my previous post edit the following:


#container {style3.css (line 8)
        background-color:#FFFFFF;
        border-color:-moz-use-text-color #B7B7B7;
        border-style:none solid;
        border-width:0 1px;
        margin:0 auto;
       width:600px;
}
 
 
to this:
 
#container {style3.css (line 8)
        background-color:#FFFFFF;
        border-color:-moz-use-text-color #B7B7B7;
        border-style:none solid;
        border-width:0 1px;
        margin:0 auto;
        width:920px;
}

Open in new window

Avatar of mcrossland

ASKER

Thanks!  That is exactly what I was looking for.