Twister1611
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Gridster-Lite] Remove "Home" On Right SidebarHi 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.
Forum: Themes and Templates
In reply to: [Gridster-Lite] move theme centralHi Miniguru hope it’ll work with your site. Open your style.css then look for
#container
and there add this codemargin:0 auto;
belowoverflow:hidden;
.So the code will look like this:
#container { width:1250px; overflow:hidden; margin:0 auto; }
Forum: Fixing WordPress
In reply to: Viewing on iPhone and iPadTried 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.
Forum: Fixing WordPress
In reply to: Viewing on iPhone and iPadLook for this phrase below.
@media only screen and ( max-width: 479px )…
Then start editing.Forum: Fixing WordPress
In reply to: Viewing on iPhone and iPadTry checking it on your style.css. It is all about the css. The positioning and the dimensions.
Forum: Themes and Templates
In reply to: Blog Page Pagination IssueJust 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&"); ?>" alt="" />
With this:
<img src="<?php echo frontline_get_image($img,700,288); ?>" alt="" />
Have a great day ahead!