jlau
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Current_page or Current_ancestors issueHey thanks, it works now! But my other issue is the sub nav. Text color should be in blue to help indicate you’re in the sub pages of the parent page. If that makes sense?
.nav-sub ul li.current_page_item a {color:#2d8ebe;}Forum: Themes and Templates
In reply to: Current_page or Current_ancestors issueThanks! I’ll give that a try in the next hour or so.
Forum: Themes and Templates
In reply to: Current_page or Current_ancestors issueWhich class goes to which menu?
Forum: Themes and Templates
In reply to: Current_page or Current_ancestors issuesidenav menu:
<nav class="nav-sub"> <ul> <li><a href="http://www.newhealthbygayle.com/about/meet-gayle/">MEET GAYLE</a></li> <p>About the founder</p> <li><a href="http://www.newhealthbygayle.com/about/missionvalue/">MISSION/VALUES</a></li> <p>Mission statement</p> <li><a href="http://www.newhealthbygayle.com/about/frequently-asked-questions/">FREQUENTLY ASKED QUESTIONS</a></li> <p>Got a question?</p> <li><a href="http://www.newhealthbygayle.com/about/resources/">RESOURCES</a></li> <p>Additional resources</p> </ul> </nav>Forum: Themes and Templates
In reply to: Current_page or Current_ancestors issueheader nav menu:
<nav class="nav-menu"> <ul> <li><a href="<?php bloginfo('home'); ?>" title="<?php bloginfo('description'); ?>">HOME</a></li> <?php wp_list_pages('title_li=&depth=1' ); ?> </ul> </nav>Forum: Themes and Templates
In reply to: Current_page or Current_ancestors issuemy files are divided in a different way. The sidebar navigation is on it own separate .php file and it is not dynamic.
This may be an issue…
Forum: Themes and Templates
In reply to: Current_page or Current_ancestors issueThis is a custom theme.
I just need to know what function, php, or css rule to activate the change.
-thanks
Forum: Fixing WordPress
In reply to: Limiting number of visible blog articles per page?Also, when I try to add a new post to the same category, it won’t publish.
Forum: Fixing WordPress
In reply to: Limiting number of visible blog articles per page?Thanks for the link. How do I make a next and previous link on the bottom now?
Forum: Themes and Templates
In reply to: Post invisible pages for specific purposes??Here is the a WordPress post that will help. The “no-show” page causes the site to crash with syntax errors.
http://wordpress.org/support/topic/remove-private-title?replies=2
Forum: Themes and Templates
In reply to: Post invisible pages for specific purposes??Hello,
If anyone out there is looking for the same answer, click on the link below for the tutorial.
Cheers!
Forum: Fixing WordPress
In reply to: How to generate different images per page?Hello again!
I have an <img src> link attached to the navigation php file.
<img src="<?php if ( has_post_thumbnail()) : ?> <a href="<?php the_permalink(); ?>" title="<?php the_title_attribute(); ?>" > <?php the_post_thumbnail(); ?> </a> <?php endif; ?>"/>But it’s not pulling up the images from my images folder.
Forum: Themes and Templates
In reply to: The_meta and wp_get_post_image not showing on page that has blogI posted a similar issue. Maybe my post will help your issue? http://wordpress.org/support/topic/how-to-generate-different-images-per-page?replies=16
Forum: Fixing WordPress
In reply to: How to generate different images per page?Thanks! Let me give this a try.
Forum: Fixing WordPress
In reply to: How to generate different images per page?Ah ha! Thank you! So…does this mean I need to change the naming scheme of the images themselves? Like for example, “about page” I would need to name the image file about-feature-image.jpg.
About -> the page
Feature – > the post
Image -> imageThis image would reside in the images folder and the ‘src’ => $src would be $images? Assuming “src” is finding only folders.
I know this is very rudimentary, but am I breaking this down correctly?
Thanks!