Welcome to the IMTalk - Internet Marketing & SEO Forum.
  • Login:
+ Reply to Thread
Results 1 to 6 of 6
  1. #1
    Mayi is offline IM & SEO Quiet One Mayi is on a distinguished road
    Join Date
    Jan 2011
    Posts
    6
    Thanks Given
    1
    Thanked 0 Times in 0 Posts

    Could someone pls help me..

    Hi there i was having a problem on my templates the Newer--Home--Older links in my blog appears on top near sidebar how can i fix this to place at the bottom page as the right place it should be thank you in advance

  2. #2
    Riba's Avatar
    Riba is offline IM & SEO Weak Jaw Riba is on a distinguished road
    Join Date
    Jan 2011
    Posts
    111
    Thanks Given
    1
    Thanked 33 Times in 21 Posts
    You should provide a link/screenshot of the example and the CMS you are using.

  3. #3
    Mayi is offline IM & SEO Quiet One Mayi is on a distinguished road
    Join Date
    Jan 2011
    Posts
    6
    Thanks Given
    1
    Thanked 0 Times in 0 Posts
    Thanks Riba heres the screenshot hxxp://i54.tinypic.com/wjszo1.jpg and the CMS hxxp://xxx.cooltricksntips.com/2010/01/community-galleria-elegant-blogger.html(communit galleria) i changed letters to xxx as im not allowed yet to post links.

  4. #4
    wink0r's Avatar
    wink0r is offline Moderator wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold wink0r is a splendid one to behold
    Join Date
    Oct 2010
    Location
    East Coast, USA
    Posts
    2,183
    Thanks Given
    941
    Thanked 651 Times in 491 Posts
    In my theme this line of code in the page template is what generates the next/previous links:
    Code:
    <?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
    It would be probably be immediately after an opening <div class="xxx"> tag with a few lines of code after it and then the closing div tag - </div>
    To change the position you would cut the code from the beginning and paste it just before the closing tag.

    If you are not familiar enough with code to follow along you might contact the theme designer for assistance.

  5. #5
    Mayi is offline IM & SEO Quiet One Mayi is on a distinguished road
    Join Date
    Jan 2011
    Posts
    6
    Thanks Given
    1
    Thanked 0 Times in 0 Posts
    Ok thanks for your help winkor appreciated i will try that i already contactted the designer but no response yet

  6. #6
    JustGoWithIt's Avatar
    JustGoWithIt is offline IM & SEO Talker JustGoWithIt is just really nice JustGoWithIt is just really nice JustGoWithIt is just really nice JustGoWithIt is just really nice
    Join Date
    Jul 2010
    Location
    Right there!
    Posts
    2,192
    Thanks Given
    93
    Thanked 341 Times in 214 Posts
    Hey Mayi,

    I know you're using Blogger. I had same problem 2 years ago but I quickly fixed it with in a minute! And here is the solution:

    First, Login to Blogger.com and go to Design > Edit HTML. Find (CTRL + F) the following code:

    Code:
    #blog-pager-newer-link {
    float: left;
    }
    
    #blog-pager-older-link {
    float: right;
    }
    
    #blog-pager {
    text-align: center;
    }
    And replaced above CSS code with the following:

    Code:
    #blog-pager-newer-link {
    float: left;
    display: inline;
    }
    
    #blog-pager-older-link {
    float: right;
    display: inline;
    }
    
    #blog-pager {
    text-align: center;
    display: inline;
    }
    Click Save template button and you're done!

    Note that I've added display: inline; CSS code.

    Check your page if it is in correct position or not.

    Let me know if I helped you
    Last edited by JustGoWithIt; 03-09-2011 at 01:02 AM.
    Hello there.


 

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts