Hi, my site is here: http://wedding.chloe-nguyen.com/
I am using the default Twenty Fourteen theme, modifying in a child theme (my first).
Scroll down and click one of the featured posts. You get taken to the single post page at the top of the page. I would like it to scroll down past the castle, past the nav bar, to the top of the title of the post. I would like my readers to get to the content while keeping the full-screen announcement on every page. I'll add a secondary nav in the right sidebar via a widget.
I found this: http://wordpress.org/support/topic/automatically-scroll-down-to-content?replies=6 but I don't know JS and the OP's site is no longer a header followed by the post(s).
On my site, the div that holds the content is:
<div id="main" class="site-main">
(I did not change this; it is the default code in the Twenty Fourteen theme)
Therefore, I think the answer is to make the links that go to posts have #main at the end, but I don't know how.
Here's the featured-content.php code:
<?php
/**
* The template for displaying featured content
*
* @package WordPress
* @subpackage Twenty_Fourteen
* @since Twenty Fourteen 1.0
*/
?>
<div id="featured-content" class="featured-content">
<div class="featured-content-inner">
<?php
/**
* Fires before the Twenty Fourteen featured content.
*
* @since Twenty Fourteen 1.0
*/
do_action( 'twentyfourteen_featured_posts_before' );
$featured_posts = twentyfourteen_get_featured_posts();
foreach ( (array) $featured_posts as $order => $post ) :
setup_postdata( $post );
// Include the featured content template.
get_template_part( 'content', 'featured-post' );
endforeach;
/**
* Fires after the Twenty Fourteen featured content.
*
* @since Twenty Fourteen 1.0
*/
do_action( 'twentyfourteen_featured_posts_after' );
wp_reset_postdata();
?>
</div><!-- .featured-content-inner -->
</div><!-- #featured-content .featured-content -->
Of course, this doesn't include the next post / previous post links, links to posts from the calendar, etc. I just thought I would start with the ft posts. How do I say, "on every post link, add #main at the end"? Am I looking in the wrong place?
Thank you in advance.
Sincerely,
Chloe
PS: If you are curious, I want to get baller enough to do something like this: http://johngeorge.com/site/ -- you see how the nav bar gets short as you scroll? I want to do that, but instead of the nav bar, the announcement. But I still need to be able to know how to add the anchor link so when you click on a link that goes to a post, it goes to a page with the shortened announcement and post content.