That 10mm space is your leftmost sidebar. Try deleting the call to it via <?php get_sidebar()?> from your theme’s template file.
Thread Starter
rsimms
(@rsimms)
Thank you Esmi. I looked in the following and couldn’t find the code you have described…
Templates
404 Template
(404.php)
Archives
(archive.php)
Author Template
(author.php)
Comments
(comments.php)
Footer
(footer.php)
Header
(header.php)
Main Index Template
(index.php)
Page Template
(page.php)
Search Results
(search.php)
Single Post
(single.php)
Tag Template
(tag.php)
Theme Functions
(functions.php)
config.inc.php
(config.inc.php)
l_sidebar.php
(l_sidebar.php)
r_sidebar.php
(r_sidebar.php)
Styles
Gray.css
(Gray.css)
Red.css
(Red.css)
Stylesheet
(style.css)
I wonder if you could be a little more specific?
Thank you so much for your help,
Ron
Thread Starter
rsimms
(@rsimms)
My page.php looks like this:
<?php get_header(); ?>
<div id=”content”>
<div id=”contentleft”>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<h1><?php the_title(); ?></h1>
<?php the_content(__(‘Read more’));?><div style=”clear:both;”></div>
<?php endwhile; else: ?>
<p><?php _e(‘Sorry, no posts matched your criteria.’); ?></p><?php endif; ?>
</div>
<?php include(TEMPLATEPATH.”/l_sidebar.php”);?>
<?php include(TEMPLATEPATH.”/r_sidebar.php”);?>
</div>
<!– The main column ends –>
<?php get_footer(); ?>
Thread Starter
rsimms
(@rsimms)
Got it!
I replaced:
<?php include(TEMPLATEPATH.”/l_sidebar.php”);?>
with:
<?php get_sidebar()?>
and it moved the right sidebar right up to the bottom of the nav bar. I probably would prefer a 10px space but this is a great work around.
Thank you for your help Esmi.
Ron.