• Resolved arickrol

    (@arickrol)


    I recently installed Ocean Mist 1.2 by Ed Merritt as my theme. He doesn’t give support for his themes. I noticed the navigation (next and last/previous page) that show in some themes (such as Blue Memories) is not in Ocean Mist.

    I want to get that back. How do I do that? I am not a coder, I don’t know php or css. I simply want links that say Next and Last/Previous at the bottom of the page, after all the posts are shown, to go to the next page of posts or the last/previous page of posts.

    My blog is at wargamingforums.com

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter arickrol

    (@arickrol)

    Is anyone else experiencing this problem with this or any other themes?

    I have no experience with this theme. But I download de theme and I see than there is no navigation (previous posts) in the index archive in Ocean Mist. If you wanted the navigation, you would have to modify the theme. May be work this:

    Open your index.php archive and look for this lines in the code:

    <?php endwhile; ?>
    
    	<?php else : ?>
    
    		<div class="title">
    		  <h2>Not Found</h2>

    Well, you have to introduce the navigation in between in this way:

    <?php endwhile; ?>
    		<div class="navigation">
    		<div class="nav-left"><?php next_posts_link('&laquo; Older posts') ?></div>
    		<div class="nav-right"><?php previous_posts_link('Newer posts &raquo;') ?></div>
    		</div>
    	<?php else : ?>
    
    		<div class="title">
    		  <h2>Not Found</h2>

    I am not sure, but I hope it works for you (may be you will have to go to the css and write the code for navigation, nav-left and nav-right classes). But if you don’t want to work with the code and you want a navigation in your blog, then you will have to change the theme.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Navigation Problem in Ocean Mist 1.2 by Ed Merritt’ is closed to new replies.