How can i change right sidebar to left ?

CommentFileSizeAuthor
#2 error.jpg34.45 KBjakadinho

Comments

matt v.’s picture

Drupify is based on a Joomla theme called Rockwebify. There are a variety of tutorials on customizing Rockwebify. Look for the one entitled "Column Orientation". It won't be exactly what you need to convert Drupify, but it should get you started.

jakadinho’s picture

StatusFileSize
new34.45 KB

I did soo.
I put:

<td class="right">
              <div class="padding">
                <div class="moduletable">
                  <?php if ($left || $right): ?>
                    <div id="sidebar-right" class="column sidebar">
                      <?php if ($secondary_links): ?>
                        <div id="secondary" class="clear-block">
                          <?php print theme('links', $secondary_links, array('class' => 'links secondary-links')) ?>
                        </div>
                      <?php endif; ?>
                      <?php if ($left) {  print $left; } ?>
                      <?php if ($right) { print $right; } ?>
                    </div> <!-- /sidebar-right -->
                  <?php endif; ?>
                </div>
              </div>
            </td>

in front of mainbody but the result is like on the added pictuere

jakadinho’s picture

Status: Active » Closed (fixed)

Never mind. I solve it.