Hi there folks,

I am very new to Drupal and making themes, so excuse my noobness.

I am experimentating with the Shanu Blue theme (http://drupal.org/project/shanu_blue). You can see it in action here : http://www.shahnawazk.com/

The description of the theme sais it's fluid, if I am correct that means that the width adjusts itself to the size of the browser window. However, as you can see on http://www.shahnawazk.com/ the width stops at a certain point when you expand your browser window, and the theme sort of gets cut off.

I am having the same problem on my localhost. Is there any way I can change this, so the width of the site adjusts itself to the browser window?

Thanks in advance!

Comments

jarek foksa’s picture

style.css, line 953 - remove max-width

#maincontainer  {
  max-width:1270px;
  width:100%;
}

style.css, line 298 - remove min-width

body.sidebars  {
  min-width:980px;
}

Keep in mind that making layout fully fluid has some usability implications (too long or too short lines of text are hard to read).

Hanhart’s picture

Thank you so much! :)