Your demo page (http://barron.sp0ke.net/) is fluid with a max width, but the style sheet I get with the v6.x-1.0 is not. Have I got the wrong files? Is the demo page not the current version?
I sent the client to look at the demo page: now they want it fluid.

Comments

jwolf’s picture

Status: Active » Closed (works as designed)

You'll need to modify the theme's style.css file as follows
(NOTE: minus means remove; plus means add)

Line 168 - style.css

 /*----------page container----------*/
 #container {
 	margin: 0 auto;
-	width: 970px;
+	max-width: 970px;
+	width: 90%;
 }
 

Line 261 - style.css

 /*----------header, logo and site name styles----------*/
 #content {
 	float: left;
 	margin: 20px 0;
+	max-width: 680px;
 	overflow: hidden;
-	width: 680px;
+	width: 70%;
 }
 

Line 270 - style.css

 /*----------sidebar styles----------*/
 	background: transparent url('images/sidebar_bottom.jpg') no-repeat left bottom;
 	float: right;
 	margin-top: 20px;
-	width: 290px;
+	max-width: 290px;
+	width: 30%;
 }