Posts: 8,441
Name: Steven Bradley
Location: Boulder, Colorado
|
My screen resolution is 1920x1200 so it is much larger. Most people are using something larger than 800x600, though.
The change to get rid of the space isn't too hard, but it might be more than you want to attempt if you're not familiar with html.
Right now there's a div with an id="main-wrapper" and another div with an id="sidebar-wrapper" Both divs have a lot of content inside of them. The main-wrapper is basically everything on the right in your layout and the sidebar-wrapper is everything on the left. In your html all the code within main-wrapper comes before the code within sidebar-wrapper.
You'd need to switch it so the order is the sidebar-wrapper code comes first and then the main-wrapper content comes after. Then you would need to find this css style on main-wrapper
float: right
and change it to float: left
None of what I just described is hard, but if html isn't familiar to you it can be easy to make a mistake which would make the whole page look really bad and then be hard to figure out how to put things back.
If you're up for it make a copy of the page and try changing the copy to make sure you can get it right and also to make sure you have the original so you know you can put things back the way they are.
|