Fix for project navigation in reverse order using Blask theme?

  • Unknown's avatar

    I’m sure this has been discussed previously, but I couldn’t find a specific answer for this problem with the Blask theme. WP posts the newest project on the portfolio page first, which is great. Unfortunately, the .nav-next and .nav-previous are reversed, relative to how most people navigate websites. Is there CSS customization that will allow me to reverse the navigation so that when I navigate by clicking on the title of the project on the right side of the project page, I am taken to the next oldest project?

    The blog I need help with is: (visible only to logged in users)

  • Unknown's avatar

    Hi there, there has been discussions on the placement of the next and previous links, and no clear consensus on it, but fear not, we can change that around with a bit of CSS.

    .post-navigation .nav-previous {
    	float: right;
    	text-align: right;
    }
    .post-navigation .nav-previous a:after {
    	content: '2192';
    }
    .post-navigation .nav-previous a:before {
    	content: "";
    }
    .post-navigation .nav-next {
    	float: left;
    	text-align: left;
    }
    .post-navigation .nav-next a:before {
    	content: '2190';
    }
    .post-navigation .nav-next a:after {
    	content: "";
    }
  • Unknown's avatar

    Thanks for your help. I see what I was missing in my code now. And I also see that with the mixed aspect ratio images distributed in the tiled mosaic, it matters less than I thought it would. I think it’s still an improvement though. Cheers!

  • Unknown's avatar

    Hooray and you are welcome!

  • The topic ‘Fix for project navigation in reverse order using Blask theme?’ is closed to new replies.