Forum Replies Created

Viewing 6 replies - 1 through 6 (of 6 total)
  • Hi Chachandz, hope this works with you.
    Open your sidebar.php then look for this line:

    <div class="sidebarwidget">
    <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
    </div>

    All you need to do is to comment out.
    So it will look like this:

    <!--<div class="sidebarwidget">
    <?php wp_nav_menu( array( 'theme_location' => 'primary' ) ); ?>
    </div>-->

    I preferred hiding than deleting it to restore the code back easily if it doesn’t work.

    Hi Miniguru hope it’ll work with your site. Open your style.css then look for #container and there add this code margin:0 auto; below overflow:hidden;.

    So the code will look like this:

    #container {
     width:1250px;
     overflow:hidden;
     margin:0 auto;
    }

    Tried it many times and it did worked for me. Try visiting your Dashboard then Appearance and click Editor. Find style.css. But if you’re a newbie about css you can contact your support then.

    Look for this phrase below.
    @media only screen and ( max-width: 479px )…
    Then start editing.

    Try checking it on your style.css. It is all about the css. The positioning and the dimensions.

    Thread Starter Twister1611

    (@twister1611)

    Just figured it out.

    I changed this:
    if( $paged > 2 && $paged > $range+1 && $show_items < $pages ) echo "<a href='".get_pagenum_link(1).'">?</a>’;
    By Increasing the number into much higher value.
    if( $paged > 1000 && $paged > $range+1 && $show_items < $pages ) echo "<a href='".get_pagenum_link(1).'">?</a>’;

    My previous button was fixed by adding this sign ‘&’ behind lsaquo.
    if( $paged > 1 && $show_items < $pages ) echo "<a href='".get_pagenum_link($paged-1)."'>&lsaquo</a>";

    Changed this code:
    <img src="<?php echo frontline_get_image("w=700&h=288&amp"); ?>" alt="" />
    With this:
    <img src="<?php echo frontline_get_image($img,700,288); ?>" alt="" />

    Have a great day ahead!

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