Jump to content
Sign in to follow this  
xabre

Helping users understand where they are on site when reading a blog post

Recommended Posts

xabre

A reviewer to a site we're developing pointed out that it's not clear where they are on the site when they are viewing a single blog post. I noticed that unlike when they are reading the main blog page that the upper nav "Blog" link is not depressed. Is there a simple way to have the upper nav link be depressed when someone is reading a specific blog post? I'm referring to WHPro but I suppose this is more of a general question. Thanks!

Share this post


Link to post
Share on other sites
bryan-hadaway

Please provide a link to your site. Also a very important indicator of where someone is located in a website is the browser title bar. I personally find that this structure is the most user-friendly and seo-friendly:

<title><?php wp_title(' | ', true, 'right'); ?>Name of Blog</title>

which will result in: Name of Page/Post | Name of Blog Thanks, Bryan

Share this post


Link to post
Share on other sites
Jackey

I think the problem is that the blog button is the only button that does not stay depressed when viewing through posts. All other menu's can (be made to) function as an indicator of where you are. I think this is indeed the case with all the themes. I do not think it is possible with Custom-CSS because the blog menu buttom is not directly attached to the post but to the post-loop. Since my posts differ very from my pages I never noticed the blog button not being depressed before.

Share this post


Link to post
Share on other sites
xabre

@ Brian. Thanks for your reply. I normally would be happy to provide a link but there is a confidentiality agreement in this case that precludes us from doing so. I appreciate the comment about the title bar. It's certainly helpful. However, readers still mention that they are confused because as Jackey points out this is the only case where the button does not stay depressed. @ Jackey. Thanks for your comment. Yes, it's because it's different behavior from the other tabs that it's odd. Some internal reviewers thought that maybe they got sent to another site. Obviously, this is a strange conclusion since the header, footer, etc. are the same, but for them to even think this might be happening is obviously not good :-) Btw, I love what you have done with your site. Let's see if the PageLines folks have any thoughts/fixes here. I'm relatively new, but they seem to be pretty good at responding.

Share this post


Link to post
Share on other sites
cmunns

This is tricky because when you click through to the actual post page it does in fact take you to a new page template with a new page id, etc. All the single post pages do have a css class assigned to them `.single` However, the structure doesn't allow us to use any sort of parent/child selector so that would seem hopeless. Let's see if Andrew has a fix...

Share this post


Link to post
Share on other sites
Andrew

Sure, this is something we can fix in a maintenance release. Just add this to custom css: ` #nav .current_page_parent a{ background:url("images/nav-sprite-default.png") repeat-x scroll 0 -72px #2A2A2A; color:#FFFFFF; text-decoration:none; } `

Share this post


Link to post
Share on other sites
xabre

Thanks! Appreciate the support on these boards from you guys.

Share this post


Link to post
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×