Pardon me!
The site url is http://www.barajeel-mag.com and the page that the post template is applied to is http://barajeel-mag.com/?p=182
And this is the code of 'fullpage.php'
<?php
/*
Template Name Posts: Full Page
*/
?>
<?php get_header(); ?>
<div id="contentfw" class="section">
<?php arras_above_content() ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<?php arras_above_post() ?>
<div id="post-<?php the_ID() ?>" <?php arras_single_post_class() ?>>
<?php arras_postheader() ?>
<div class="entry-content clearfix">
<?php the_content( __('<p>Read the rest of this entry »</p>', 'arras') ); ?>
<?php wp_link_pages(array('before' => __('<p><strong>Pages:</strong> ', 'arras'),
'after' => '</p>', 'next_or_number' => 'number')); ?>
</div>
<?php arras_postfooter() ?>
<?php
if ( arras_get_option('display_author') ) {
arras_post_aboutauthor();
}
?>
</div>
<?php arras_below_post() ?>
<a name="comments"></a>
<?php comments_template('', true); ?>
<?php arras_below_comments() ?>
<?php endwhile; else: ?>
<?php arras_post_notfound() ?>
<?php endif; ?>
<?php arras_below_content() ?>
</div><!-- #content -->
<?php get_footer(); ?>
And the code of '3c-fixed.css'
/*
LAYOUT: Three-Column
DESCRIPTION: Three-column 950px fixed layout with two sidebars on either side of content
*/
body {
min-width:960px;
}
#main {
width:960px;
margin:0 auto;
position:relative;
}
#container {
width:960px;
float:left;
margin:0;
}
#content {
margin: 0 220px 0 230px;
overflow:hidden;
}
#primary {
width:220px;
float:left;
margin: 0 0 0 -960px;
}
* html #primary {
left: 20px;
position: relative;
}
#secondary {
width:220px;
float:left;
margin: 0 0 0 -220px;
}
#footer {
clear:both;
}
#subsidiary {
width:960px;
margin:0 auto;
overflow:hidden;
}
#subsidiary .aside {
width:300px;
float:left;
margin:0 10px 0 10px;
}
#subsidiary #third {
margin:0 0 0 10px;
}
#siteinfo {
clear:both;
width:940px;
margin:0 auto;
}
#contentfw {
margin:0;
width:960px;
overflow:hidden;
}
.fixed {
width:960px;
margin:0 auto;
}
Thanks!
Last edited by moun (2011-02-15 06:54:42)