there's possibly a very simple answer to this, but I haven't been able to find it so far.

how do I move the first sidebar to the left instead of the right?

Comments

infomantra’s picture

Assigned: infomantra » Unassigned
gabesullice’s picture

Go into sites/all/themes/responsive/templates and locate the 'page.tpl.php' file. Open it in an editor and locate the following:

  <?php if ($page['sidebar_first']): ?>

    <aside id="sidebar-first" role="complementary" class="sidebar five columns">

      <?php print render($page['sidebar_first']); ?>

    </aside>  <!-- /#sidebar-first -->

  <?php endif; ?>

Move that piece of php/html below the line:

<?php if($page['sidebar_first']) { $contentwid= "eleven"; } else { $contentwid= "sixteen"; } ?>

This should render the first sidebar on the left, or before, the content region.

infomantra’s picture

Status: Active » Fixed

A big thank you to you #gsullice for pointing this out.

Your suggestion worked like a charm.

Much appreciated!!!

Status: Fixed » Closed (fixed)

Automatically closed -- issue fixed for 2 weeks with no activity.