Page Templates
-
I am currently using the Relaxation theme (you can see the design at https://www.almightydung.cerenthia.net/?page_id=4) and I’m trying to make it so the sidebar part of the layout design on the far right is “attached”. I’ve modified the Top, Bottom, and Middle images to my liking and have created new classes in the style.css. I also made a new header and Footer PHP file.
After all this I still don’t see any changes in the Page. The sidebar is gone now but the images aren’t changing. My Page template looks like this:
<?php get_header(header1.php); ?>
<div id=”content”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?><div class=”post”>
<h1 id=”post-<?php the_ID(); ?>”><?php the_title(); ?></h1>
<div class=”entrytext”>
<?php the_content(‘<p class=”serif”>Read the rest of this page »’); ?><?php link_pages(‘Pages: ‘, ”, ‘number’); ?>
</div>
</div><?php endwhile; endif; ?>
<?php edit_post_link(‘Edit this entry.’, ”, ”); ?></div>
</div>
<?php get_footer(footer1.php); ?>
Does anyone know how I can get the images to change? I’ve changed the PHP values in both new header and footer documents to match the new image classes in the CSS. So instead of the regular middle, top, and bottom images the values should show the new ones. I hope this isn’t too confusing
- The topic ‘Page Templates’ is closed to new replies.