Jump to content

[SOLVED] Switch right column to left fasion-bird theme


Recommended Posts

How to switch right column to left fashion-bird free theme.

 

footer.tpl

 

        {if !$content_only}
                </div>

<!-- Right -->
<aside id="right_column"  class="span3 column right_home">   
              {$HOOK_RIGHT_COLUMN}
</aside>
</div>
    </div>
        </div>
<div class="footer-bg-mob">
    <footer class="container ">
       <div class="row modules">
           {$HOOK_FOOTER}
      </div>
    </footer>
</div>          
    </div>
        </div>
            </div>
  {/if}
</body>
</html>

 

header.tpl

 

<div id="wrapp">
       <div id="wrapp_2">
          <header id="header" class="container ">
            <div  id="header-inner" >
                   <a id="header_logo" href="{$base_dir}" title="{$shop_name|escape:'htmlall':'UTF-8'}">
                     <img class="logo" src="{$logo_url}" alt="{$shop_name|escape:'htmlall':'UTF-8'}" {if $logo_image_width}width="{$logo_image_width}"{/if} {if $logo_image_height}height="{$logo_image_height}" {/if} />
                  </a>
          {$HOOK_TOP}
         </div>
           </header>
<div id="columns" class="container ">
                 <div class="row ">  
                 <div class="loader_page">    
                                <aside id="left_column"  class="span3 column" style=" display:none">
                                   {$HOOK_LEFT_COLUMN}
                                </aside>   
                         {if $page_name == 'index'}    
                         <div id="center_column" class="center_column span12 clearfix">
                        {else}
                          <div id="center_column" class="center_column span9 clearfix">
                        {/if}

 

aq6b.jpg

 

 

 

 

Link to comment
Share on other sites

                                <aside id="left_column"  class="span3 column" style=" display:none">
                                   {$HOOK_LEFT_COLUMN}
                                </aside>  

change to

                                <aside id="right_column"  class="span3 column" style=" display:none">
                                   {$HOOK_LEFT_COLUMN}
                                </aside>  

and

<aside id="right_column"  class="span3 column right_home">   
              {$HOOK_RIGHT_COLUMN}
</aside>

to:

<aside id="left_column"  class="span3 column right_home">   
              {$HOOK_RIGHT_COLUMN}
</aside>

then just change position of these codes (swap them)

Link to comment
Share on other sites

                                <aside id="left_column"  class="span3 column" style=" display:none">
                                   {$HOOK_LEFT_COLUMN}
                                </aside>  

change to

                                <aside id="right_column"  class="span3 column" style=" display:none">
                                   {$HOOK_LEFT_COLUMN}
                                </aside>  

and

<aside id="right_column"  class="span3 column right_home">   
              {$HOOK_RIGHT_COLUMN}
</aside>

to:

<aside id="left_column"  class="span3 column right_home">   
              {$HOOK_RIGHT_COLUMN}
</aside>

then just change position of these codes (swap them)

 

I have  changed the code like  above

 

what do you mean by change position

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • Create New...