Forum Replies Created

Viewing 4 replies - 1 through 4 (of 4 total)
  • Thread Starter mwlx

    (@mwlx)

    Hi Falguni,

    It worked

    thank you,
    mwlx.

    Thread Starter mwlx

    (@mwlx)

    Hi Falguni,

    Um I searched the code but the class was not wrong because when i changed i copy paste what you wrote so i am not sure what is going on. I don’t have high knowledge of html and css.

    Also I have left a review your theme is amazing!

    thanks,
    mwlx.

    Thread Starter mwlx

    (@mwlx)

    okay great i got the same color but they are still above each other and not beside each other also the name of the footer doesn’t show

    Thread Starter mwlx

    (@mwlx)

    register_sidebar( array(
    ‘name’ => ‘Footer Sidebar 1’,
    ‘id’ => ‘footer-sidebar-1’,
    ‘description’ => ‘Appears in the footer area’,
    ‘before_widget’ => ‘<aside id=”%1$s” class=”widget %2$s”>’,
    ‘after_widget’ => ‘</aside>’,
    ‘before_title’ => ‘<h3 class=”widget-title”>’,
    ‘after_title’ => ‘</h3>’,
    ) );
    register_sidebar( array(
    ‘name’ => ‘Footer Sidebar 2’,
    ‘id’ => ‘footer-sidebar-2’,
    ‘description’ => ‘Appears in the footer area’,
    ‘before_widget’ => ‘<aside id=”%1$s” class=”widget %2$s”>’,
    ‘after_widget’ => ‘</aside>’,
    ‘before_title’ => ‘<h3 class=”widget-title”>’,
    ‘after_title’ => ‘</h3>’,
    ) );
    register_sidebar( array(
    ‘name’ => ‘Footer Sidebar 3’,
    ‘id’ => ‘footer-sidebar-3’,
    ‘description’ => ‘Appears in the footer area’,
    ‘before_widget’ => ‘<aside id=”%1$s” class=”widget %2$s”>’,
    ‘after_widget’ => ‘</aside>’,
    ‘before_title’ => ‘<h3 class=”widget-title”>’,
    ‘after_title’ => ‘</h3>’,
    ) );

    <div id=”footer-sidebar” class=”secondary”>
    <div id=”footer-sidebar1″>
    <?php
    if(is_active_sidebar(‘footer-sidebar-1’)){
    dynamic_sidebar(‘footer-sidebar-1’);
    }
    ?>
    </div>
    <div id=”footer-sidebar2″>
    <?php
    if(is_active_sidebar(‘footer-sidebar-2’)){
    dynamic_sidebar(‘footer-sidebar-2’);
    }
    ?>
    </div>
    <div id=”footer-sidebar3″>
    <?php
    if(is_active_sidebar(‘footer-sidebar-3’)){
    dynamic_sidebar(‘footer-sidebar-3’);
    }
    ?>
    </div>
    </div>

    #footer-sidebar {
    display:block;
    height: 250px;
    }

    #footer-sidebar1 {
    float: left;
    width: 340px;
    margin-left:5px;
    margin-right:5px;
    }

    #footer-sidebar2 {
    float: left;
    width: 340px;
    margin-right:5px;
    }

    #footer-sidebar3 {
    float: left;
    width: 340px;
    }

    I have added these three codes to the Editor of the theme but now they show up in the footer but above each other on the left. i want them beside each other and also have the same color as the credits
    you can see how they look here http://myweightlossexperiments.com/

Viewing 4 replies - 1 through 4 (of 4 total)