Trouble unlinking uploaded background image from new pages
-
Hello, I am wanting to add a different background image to the body of new pages that I create. My problem is that I am unsure of which code to change in my page.php panel. The theme I am using (D5 Business Line) provides an upload option for changing the background, but this option applies the change to all of the pages. Consequently, there is no line of code in the page.php or style.css panel that visibly shows any background or url information for the BODY of the background. I have searched the forums and read information about changing code in the page.php panel, but I cannot make any changes because I cannot identify the code to change. Thanks for any help.
Page.php info
get_header(); ?>
<div id=”content”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div <?php post_class(); ?> id=”post-<?php the_ID(); ?>”>
<h1 class=”page-title”><?php the_title(); ?></h1>
<div class=”content-ver-sep”> </div>
<div class=”entrytext”>
<?php the_post_thumbnail(‘thumbnail’); ?>
<?php the_content(‘<p class=”read-more”>Read the rest of this page ?</p>’); ?><?php wp_link_pages(array(‘before’ => ‘<p>Pages: ‘, ‘after’ => ‘</p>’, ‘next_or_number’ => ‘number’)); ?>
</div>
</div>
<?php endwhile; ?>
<div class=”clear”> </div>
<?php edit_post_link(‘Edit This Entry’, ‘<p>’, ‘</p>’); ?>
<?php comments_template(”, true); ?>
<?php else: ?>
<p>Sorry, no pages matched your criteria.</p>
<?php endif; ?>
</div><?php get_sidebar(); ?>
<?php get_footer(); ?>
- The topic ‘Trouble unlinking uploaded background image from new pages’ is closed to new replies.