Salve a tutti vorrei creare in wordpress una pagina template sfruttando il css ma non so come fargli capire le impostazioni che deve usare.
Vorrei una pagina "post" bianca di larghezza 855px
file template.php devo cambiare il class? è quello che fa riferimento al css o id?
codice:
<?php\
/*\
Template Name: Template
*/\
?>
<?php get_header(); ?>
<?php if (have_posts()) : while (have_posts()) : the_post(); ?>
<div class="post" id="post-<?php the_ID(); ?>">
<h2 id="post-<?php the_ID(); ?>"><?php the_title(); ?></h2>
<?php the_content(__('Read the rest of this page »')); ?>
<?php wp_link_pages(); ?>
<?php edit_post_link(__('Edit'), '
', '</p>'); ?>
</div>
<?php endwhile; endif; ?>
<?php get_footer(); ?>
Nel file css cosa ci metto?