<?xml version="1.0" encoding="UTF-8"?>
<commit>
  <added type="array"/>
  <modified type="array">
    <modified>
      <diff>@@ -1,8 +1,7 @@
 &lt;%= render :partial =&gt; 'shares/subnav' %&gt;
 
-&lt;div style=&quot;width:50%;float:right;margin-left:25px;&quot;&gt;
-
-  &lt;% if Setting.get(:features, :verses) %&gt;
+&lt;% if Setting.get(:features, :verses) %&gt;
+  &lt;div class=&quot;share-box&quot;&gt;
     &lt;h2&gt;&lt;%= link_to 'Verses' + image_tag('next.gif', :alt =&gt; 'Verses', :class =&gt; 'icon'), verses_path %&gt;&lt;/h2&gt;
     &lt;% if @verses.any? %&gt;
       &lt;%= render :partial =&gt; 'verses/verse', :collection =&gt; @verses %&gt;
@@ -10,9 +9,11 @@
       &lt;p&gt;&lt;em&gt;No verses yet... Add some!&lt;/em&gt;&lt;/p&gt;
     &lt;% end %&gt;
     &lt;p&gt;&lt;%= link_to 'Click here', verses_path %&gt; to see more and to share your own favorite verses.&lt;/p&gt;
-  &lt;% end %&gt;
+  &lt;/div&gt;
+&lt;% end %&gt;
 
-  &lt;% if Setting.get(:features, :recipes) %&gt;
+&lt;% if Setting.get(:features, :recipes) %&gt;
+  &lt;div class=&quot;share-box&quot;&gt;
     &lt;h2&gt;&lt;%= link_to 'Recipes' + image_tag('next.gif', :alt =&gt; 'Recipes', :class =&gt; 'icon'), recipes_path %&gt;&lt;/h2&gt;
     &lt;% if @recipes.any? %&gt;
       &lt;%= render :partial =&gt; 'recipes/list', :locals =&gt; {:recipes =&gt; @recipes} %&gt;
@@ -20,33 +21,38 @@
       &lt;p&gt;&lt;em&gt;No recipes yet... Add some!&lt;/em&gt;&lt;/p&gt;
     &lt;% end %&gt;
     &lt;p&gt;&lt;%= link_to 'Click here', recipes_path %&gt; to see more and to share your own favorite recipes.&lt;/p&gt;
-  &lt;% end %&gt;
+  &lt;/div&gt;
+&lt;% end %&gt;
   
-&lt;/div&gt;
-
 &lt;% if Setting.get(:features, :publications) %&gt;
-  &lt;h2&gt;&lt;%= link_to 'Publications' + image_tag('next.gif', :alt =&gt; 'Publications', :class =&gt; 'icon'), publications_path %&gt;&lt;/h2&gt;
-  &lt;%= render :partial =&gt; 'publications/list' %&gt;
-  &lt;p&gt;&lt;%= link_to 'Click here', publications_path %&gt; for more details and to sign up for updates.&lt;/p&gt;
+  &lt;div class=&quot;share-box&quot;&gt;
+    &lt;h2&gt;&lt;%= link_to 'Publications' + image_tag('next.gif', :alt =&gt; 'Publications', :class =&gt; 'icon'), publications_path %&gt;&lt;/h2&gt;
+    &lt;%= render :partial =&gt; 'publications/list' %&gt;
+    &lt;p&gt;&lt;%= link_to 'Click here', publications_path %&gt; for more details and to sign up for updates.&lt;/p&gt;
+  &lt;/div&gt;
 &lt;% end %&gt;
 
 &lt;% if Setting.get(:features, :pictures) %&gt;
-  &lt;h2&gt;&lt;%= link_to 'Pictures' + image_tag('next.gif', :alt =&gt; 'Pictures', :class =&gt; 'icon'), albums_path %&gt;&lt;/h2&gt;
-  &lt;% if @pictures.any? %&gt;
-    &lt;p&gt;
-      &lt;% @pictures.each do |object| %&gt;
-        &lt;%= link_to image_tag(small_picture_path(object), :alt =&gt; 'click to enlarge'),
-          picture_path(object), :title =&gt; 'click to enlarge' %&gt;
-      &lt;% end %&gt;
-    &lt;/p&gt;
-  &lt;% else %&gt;
-    &lt;p&gt;&lt;em&gt;No pictures yet... Add some!&lt;/em&gt;&lt;/p&gt;
-  &lt;% end %&gt;
-  &lt;p&gt;&lt;%= link_to 'Click here', albums_path %&gt; to see more and to upload your own pictures.&lt;/p&gt;
+  &lt;div class=&quot;share-box&quot;&gt;
+    &lt;h2&gt;&lt;%= link_to 'Pictures' + image_tag('next.gif', :alt =&gt; 'Pictures', :class =&gt; 'icon'), albums_path %&gt;&lt;/h2&gt;
+    &lt;% if @pictures.any? %&gt;
+      &lt;p&gt;
+        &lt;% @pictures.each do |object| %&gt;
+          &lt;%= link_to image_tag(small_picture_path(object), :alt =&gt; 'click to enlarge'),
+            picture_path(object), :title =&gt; 'click to enlarge' %&gt;
+        &lt;% end %&gt;
+      &lt;/p&gt;
+    &lt;% else %&gt;
+      &lt;p&gt;&lt;em&gt;No pictures yet... Add some!&lt;/em&gt;&lt;/p&gt;
+    &lt;% end %&gt;
+    &lt;p&gt;&lt;%= link_to 'Click here', albums_path %&gt; to see more and to upload your own pictures.&lt;/p&gt;
+  &lt;/div&gt;
 &lt;% end %&gt;
 
 &lt;% PLUGIN_HOOKS[:more_page].each do |partial, conditional| %&gt;
   &lt;% if conditional.nil? or (conditional.respond_to?(:call) and conditional.call(self)) %&gt;
-    &lt;%= render :partial =&gt; partial %&gt;
+    &lt;div class=&quot;share-box&quot;&gt;
+      &lt;%= render :partial =&gt; partial %&gt;
+    &lt;/div&gt;
   &lt;% end %&gt;
 &lt;% end %&gt;</diff>
      <filename>app/views/shares/index.html.erb</filename>
    </modified>
    <modified>
      <diff>@@ -948,3 +948,9 @@ code {
 .handle {
   cursor: move;
 }
+
+.share-box {
+  width: 45%;
+  float: left;
+  margin-right: 20px;
+}</diff>
      <filename>public/stylesheets/aqueouslight.css</filename>
    </modified>
  </modified>
  <removed type="array"/>
  <parents type="array">
    <parent>
      <id>fdea32d9a4414b465c24db4abbf674b9b9aba402</id>
    </parent>
  </parents>
  <author>
    <name>Tim Morgan</name>
    <email>tim@timmorgan.org</email>
  </author>
  <url>http://github.com/seven1m/onebody/commit/7c75f2a2ef84e8d25d9105134314a47bd0ef812e</url>
  <id>7c75f2a2ef84e8d25d9105134314a47bd0ef812e</id>
  <committed-date>2008-08-17T20:05:35-07:00</committed-date>
  <authored-date>2008-08-17T20:05:35-07:00</authored-date>
  <message>Flow More tab sections across page.</message>
  <tree>8bf57227a2b2a647a5b08af9ce34596abf744952</tree>
  <committer>
    <name>Tim Morgan</name>
    <email>tim@timmorgan.org</email>
  </committer>
</commit>
