jackman3342
Forum Replies Created
-
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Header ImageSorry looks like I needed to delete my cache. So the post pages look good except now there is no header image – is there a way to add a different header image on just those pages?
And on the About page, is there a way to make the picture much smaller?
Forum: Themes and Templates
In reply to: [Twenty Seventeen] Header ImageI put that in my style.css, but the header images on my post pages is still cut off and the header image on my “About” page is extremely large. Any way to have the entire header image show on the post pages and make the “About” page picture smaller?
Forum: Themes and Templates
In reply to: [Sydney] Add Static Text to Posts PageAh thanks I see it now! I appreciate your help. Must have been the cache causing it not to display on my browser.
Forum: Themes and Templates
In reply to: [Sydney] Add Static Text to Posts PageSorry I still can’t get it to show up. I’m extremely new to wordpress/html.The code in the home.php file is below. I put “Test” as the heading I want to show up on my posts page. I appreciate your help:
<?php
/**
* The home template file.
*
* @package Sydney
*/get_header(); ?>
<div id=”primary” class=”content-area col-md-9 <?php echo sydney_blog_layout(); ?>”>
<main id=”main” class=”post-wrap” role=”main”><?php if ( have_posts() ) : ?>
<h1> “Test” </h1>
<div class=”posts-layout”>
<?php while ( have_posts() ) : the_post(); ?><?php
get_template_part( ‘content’, get_post_format() );
?><?php endwhile; ?>
</div><?php the_posts_navigation(); ?>
<?php else : ?>
<?php get_template_part( ‘content’, ‘none’ ); ?>
<?php endif; ?>
</main><!– #main –>
</div><!– #primary –><?php
if ( get_theme_mod(‘blog_layout’,’classic’) == ‘classic’ ) :
get_sidebar();
endif;
?>
<?php get_footer(); ?>