Jump to content

Change Width Of The Site?


Recommended Posts

What is your screen size ?
You could change global.css this is from default theme

#page  {
margin:0 auto 2px;
text-align:left;
width:980px;
}
#left_column {
   clear: left;
   width: 191px;
   margin-right: 21px;
   overflow: hidden
}
#center_column {
   width: 556px;
   margin: 0 0 30px 0;
   overflow: hidden
}
#right_column {
   width: 191px;
   margin-left: 21px;
   overflow: hidden
}



And few more places

Link to comment
Share on other sites

That is little low resolution for today standards but you could try to make fluid layout like for start

#page  {
margin:0 2%;
text-align:left;
width:95%;
}
#left_column {
   clear: left;
   width: 20%;
   margin-right: 1%;
   overflow: hidden
}
#center_column {
   width: 55%;
   margin: 0 0 1% 0;
   overflow: hidden
}
#right_column {
   width:20%;
   margin-left: 1%;
   overflow: hidden
}



And that is just beginning of changes.
You could also try to find theme that could be used in 800x600.

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...