Suggestions for similar Themes?
Hi guys!
I have really fallen in love with the themes NoProb http://themegarden.org/drupal6/?q=node&theme=noprob and Light http://themegarden.org/drupal6/?q=node&theme=light for my new site. Problem is
1. Neither theme supports two columns on righ hand side
2. There is like a trillion themes to browse... :S
Can anyone tell me a few good templates similar to these that supports two right hand columns? Perhaps even a little like About People that was avalible in all three version :)
Or if not, perhaps tell me how I can edit NoProb to become a two right hand column theme instead of the current one left hand, one right hand columns...
Thx guys, I'd really appreciate it!!!
Ps. What part of the code is it even that sets the colums on left or right hand side? Could perhaps come in handy to know sometime when you wanna alter the layout a bit :)

=-=
you can move regions in any theme. Thus you can take a theme you like and maipulate it to have both sidebars on the right or left.
Yes
themes don't have to be turn-key (though they can be of course). With a little editing of the page.tpl.php, .info and css files, you can make either of those themes do what you like.
If you're not comfortable doing any of those things (or just want something you can enable and use) then sifting through them is really the only answer.
If you aren't afraid to get in there and muck about, try one and post any specific questions you have.
To get Noprob to do what you want, it uses tables, so you'll need to make most of your changes to the page.tpl.php file most likely. The basic structural elements are:
<table id="middle" border="0" cellpadding="0" cellspacing="0"><tr>
<td id="sidebar-left" class="sidebar">
....
</td>
<td id="main" class="content-both">
...
</td>
<td id="sidebar-right" class="sidebar">
...
</td>
</tr>
</table>
Start with changing it to
<table id="middle" border="0" cellpadding="0" cellspacing="0"><tr>
<td id="sidebar-left" class="sidebar">
....
</td>
<td id="sidebar-right" class="sidebar">
...
</td>
<td id="main" class="content-both">
...
</td>
</tr>
</table>
and see where that leaves you.
In case you still need out of
In case you still need out of the shelf sidebars on the right, check this out: http://drupal.org/project/plaingrail
love, light n laughter
gausarts