Grrrr, sidebars.
Hi Joern, just stuck at the moment on getting a page to run full width with no sidebar. I've followed the advice that you had about creating forum pages and made a new template like this (ignore the backticks obv!):
<?php
/*
Template Name: pagenosidebar
*/
?>
<?php get_header(); ?>
<div id="content">
<div id="content" style="width: 900px;">
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post_<?php the_ID(); ?>">
<span class="breadcrumbs"><a href="<?php echo get_option('home'); ?>/">Home</a> » <?php the_title(); ?></span>
<h2 class="title"><?php the_title(); ?></h2>
<div class="entry clearfloat">
<?php the_content('<p class="serif">Read the rest of this page »</p>'); ?>
<?php wp_link_pages(array('before' => '<p><strong>Pages:</strong> ', 'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
</div>
<?php edit_post_link('Edit this entry.', '<p>', '</p>'); ?>
</div>
<?php endwhile; endif; ?>
</div>
<?php get_footer(); ?>
This is the result (password is joern) - http://www.iamstaggered.com/shop/personalised-cards
You can see that the iframe is still limited by width - any chance you can tell me how to run it across the whole page, I would be so grateful.
Best wishes,
drwhom.