Plainscape Theme for Drupal

Download latest version

This theme is ported from the minimalistic WordPress theme Plainscape.

Screenshot

Screenshot

Basic features

  • Tableless design
  • Fixed width (960px)
  • Two Columns
  • Right sidebar
  • Logo
  • Site name
  • Site slogan
  • Search box
  • Shortcut icon
  • Primary links

Advanced features (available via theme settings)

  • WordPress-style "Read more" link
  • "Previous" and "Next" links per content type
  • Show / hide breadcrumb
  • Number of comments in "Recent Comments" block

Other features

  • 8 custom regions for placing blocks and/or ads
  • Separate custom.css for user customization
  • Expandable main content area when sidebar is empty
  • Supports Drupal version 6.x
  • Valid XHTML 1.0 Strict / CSS 2.1
  • Tested on IE 6 and Firefox 3
  • Simple / minimalist / plain / clean / blue / white

Related links

  1. Plainscape: Original WordPress theme.
  2. 960 Grid System: CSS framework I used to create the layout of this theme.

Download

Download latest version

Released for free under the GNU General Public License (GPL)

Version history

6.x-1.0 (7 Mar 2009)

  • Cleaned up the CSS
  • Added a new advanced theme setting (number of comments in Recent Comments block)
  • Added logo support according to Janos' request
  • New theme logo and favicon -- adapted from the famous Druplicon

6.x-1.0-beta2 (25 Feb 2009)

  • Modified main div so it expands when the sidebar is empty

6.x-1.0-beta1 (24 Feb 2009)

  • Added advanced theme settings
  • Fixed a minor bug

6.x-0.9 (22 Feb 2009)

  • Added "next" and "previous" links per content type in full node view

6.x-0.8 (03 Jan 2009)

  • Fixed IE italic bug which will cause the sidebar to move to the bottom of the page when viewing in IE 6
  • Added conditional comment to include IE7.js to fix many HTML and CSS issues and make transparent PNG work correctly
  • Modified template files so the theme now validates as XHTML 1.0 Strict
  • Miscellaneous CSS fixes

6.x-0.5 (27 Dec 2008)

  • Initial version

Feedback

Please feel free to leave a comment here. All comments and suggestions are welcome.

12 comments

Janos Maczko's picture
Janos Maczko (visitor) says:

Hi! Thanks for this great theme! We use on our non-profit organization site, because it so clear and fast.

Just one question: possible to implement logo option?

Best regards: Janos Maczko Ter Kep Egyesulet Miskolc, Hungary

kong's picture
kong says:

Hello Janos,

Glad to hear that you like it :)

And yes, I will add the logo option in the next release of Plainscape. Thanks for the feedback!

-----
Update:

Now you can use a logo in Plainscape theme.

Ross Laird's picture
Ross Laird (visitor) says:

Plainscape is great. Thanks for making it, and keep up the good work.

signupandmakemoney's picture
signupandmakemoney (visitor) says:

Got a problem. The theme was working great. Until I installed a bunch of mods. I don't know if a mod is the cause of the error, but it could be.

Any, I get an error on the Forum when viewing a single thread or post.

Here is the code error:

user warning: Unknown column 'n.nid' in 'field list' query: SELECT DISTINCT(n.nid), title FROM node WHERE type = 'forum' AND status = 1 AND created < 1247887371 ORDER BY created DESC LIMIT 0, 1 in /home/content/g/d/c/gdc25/html/community/sites/all/themes/plainscape/template.php on line 231. user warning: Unknown column 'n.nid' in 'field list' query: SELECT DISTINCT(n.nid), title FROM node WHERE type = 'forum' AND status = 1 AND created > 1247887371 ORDER BY created ASC LIMIT 0, 1 in /home/content/g/d/c/gdc25/html/community/sites/all/themes/plainscape/template.php on line 253.

Any ideas? Can I just comment out the code that is causing errors?

Error on this page: http://www.signupandmakemoney.com/community/content/make-over-1000-free

kong's picture
kong says:

Hi,

Try replacing template.php with the one in this issue. I'll release a new version of the theme soon.

Anonymous's picture
Anonymous (visitor) says:

Great template! How do I add my own background image instead of the white background?

kong's picture
kong says:

Hi,

You need to enable the custom CSS file. Please see css/custom-sample.css for instructions.

Put your background image in the images directory and add this code into your custom CSS file:

body {
    background-image: url(../images/my_background.gif);
    background-repeat: no-repeat;
    background-attachment: fixed;
    background-color: #1A1B1F;
}

Of course, please adjust the code to suit your style :)

Anonymous's picture
Anonymous (visitor) says:

Awesome! Thanks for the great theme and quick response!

bayan giyim's picture
bayan giyim (visitor) says:

Thank you very much for the excellent and useful subject.

Larry's picture
Larry (visitor) says:

Hi, nice clean theme. Is there a way to disable the automatic conversion of titles to upper-case?

kong's picture
kong says:

Hi Larry,

Just edit the style.css and find this block:

h1, h2, h3, h4, h5, h6 {
  font-family: 'Trebuchet MS', 'Lucida Grande', Arial, Sans-Serif;
  font-weight: bold;
  text-transform: uppercase;
}

and remove/comment out the line with text-transform property.

Larry's picture
Larry (visitor) says:

Hi Kong, thanks! I just found the text-transform property in style.css, and was going to say never mind. I added an over-ride in custom.css. Nice job on this theme. Thanks for the help.