here is from my template for page template (page.php)
i guess pages are based on this.
1. do i need to create another template and base the page on that ?
2. How do i do so, if you provide me with code?
3. Would i save the file and upload using ftp, i dont see a way in wordpress appearance-editor.
~
<?php $options = get_option(‘inove_options’); ?>
<?php if (have_posts()) : the_post(); update_post_caches($posts); ?>
<div class=”post” id=”post-<?php the_ID(); ?>”>
<h2><?php the_title(); ?></h2>
<div class=”info”>
<div class=”act”>
</div>
<div class=”fixed”></div>
</div>
<div class=”content”>
<?php the_content(); ?>
<div class=”fixed”></div>
</div>
</div>
<?php else : ?>
<div class=”errorbox”>
<?php _e(‘Sorry, no posts matched your criteria.’, ‘inove’); ?>
</div>
<?php endif; ?>
~