link?
without seeing the problem live, there is no way to help …
in the full width pages .postContent defines the enter area; it has a 20px margin at the bottom:
.postContent {
color:#555;
font-family:Verdana, Geneva, sans-serif;
font-size:12px;
line-height:20px;
margin:20px 15px;
overflow:hidden;
}
(the margin numbers are in pairs – top/bottom left/right)
changing that margin line to:
margin:20px 15px 0px 15px;
should reduce that space.
there is also a 15px bottom margin in the paragraphs which may give the impression that the footer is further away:
.postContent p {
margin:0 0 15px;
}
Awesome help alchymyth 🙂 I’m slowly picking this up by myslef but help is always invaluable!
Just tried changing these parameters and it only changes the content margins and not the footer ones.
Here is my page_fullwidth.php
<?php
/*
Template Name: Full Page (No Sidebar)
*/
?>
<?php $arjunaOptions = arjuna_get_options(); ?>
<?php get_header(); ?>
<div class=”contentArea contentAreaFull”>
<?php if (have_posts()) : ?>
<?php while (have_posts()) : the_post(); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<div class=”postContent”>
<?php the_content(__(‘continue reading…’, ‘Arjuna’)); ?>
</div>
<?php endwhile; ?>
<?php else : ?>
<p><?php _e(‘There is nothing here.’, ‘Arjuna’); ?></p>
<?php endif; ?>
</div>
<?php get_footer(); ?>
there is a difference:
in the blog page, the div .footer is outside/after the div .contentWrapper –
while in the fullwidth template, the div .footer sits within the div .contentWrapper;
you probably missed a closing div somewhere before including the footer.php.
the validation report says the same: http://validator.w3.org/check?uri=http%3A%2F%2Fwww.jasonmunro.com%2F&charset=%28detect+automatically%29&doctype=Inline&group=0
while the blog page is valid: http://validator.w3.org/check?uri=http%3A%2F%2Fwww.jasonmunro.com%2Fblog%2F&charset=%28detect+automatically%29&doctype=Inline&group=0
Had a </div> missing from the bottom of the page!
Thanks again 🙂
Why can’t I be a coder like you LOL