How to move sidebar to left side?

Discussion in 'ClassiCraft WordPress Theme' started by M5LASTER, Sep 5, 2014.

Thread Status:
Not open for further replies.
  1. M5LASTER

    M5LASTER Member

    Joined:
    Oct 21, 2013
    Messages:
    232
    Likes Received:
    0
    Hi there,
    I need to move the sidebar widget area from right side of the page or post to the left side. How can this be done?

    I attached an image for clarification.

    Thanks,
    Mike
    move sidebar to left.png
     
  2. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    Find following code in all pages
    1.
    Code:
    <div class="grid_7 omega">
      <?php get_sidebar(); ?>
    </div>
    2.
    Code:
    <div class="grid_7 omega">
        <div class="sidebar">
            <?php
                if ( is_active_sidebar( 'home-widget-area' ) ) :
                    dynamic_sidebar( 'home-widget-area' );
                endif;
            ?>
        </div>
    </div>
    If you find any of them then cut that code and paste just before
    Code:
    <div class="grid_17 alpha"> 
    line on that page.

    That will resolve your issue.

    Thanks & Regards
    Yogesh Bhade
     
  3. M5LASTER

    M5LASTER Member

    Joined:
    Oct 21, 2013
    Messages:
    232
    Likes Received:
    0
    Hi Yogesh,

    Thanks for your reply. This worked in the parent theme, but when I tried it in a child theme it didn't work.
    Is there anything else required for the child them in order to make it work there?

    Thanks,
    Mike
     
  4. Yogesh

    Yogesh Guest

    Joined:
    Aug 8, 2014
    Messages:
    2,052
    Likes Received:
    41
    Hello,

    I think you didn't read correctly the child theme article, in the child theme only style.css file stored not all files.

    Thanks & Regards
    Yogesh Bhade
     
  5. M5LASTER

    M5LASTER Member

    Joined:
    Oct 21, 2013
    Messages:
    232
    Likes Received:
    0
    Thanks!
     
Thread Status:
Not open for further replies.

Share This Page