create 2 column posts starkers theme
-
i would like to create 2 column posts “colleft” and “colright” in index.php starkers theme as i want an intro text in one and a gallery in the other – as you can see both are now in first column
site
https://www.maonaimagem.com/wordpress/
code<div id="colleft"> <?php if ( have_posts() ): ?> <ol> <?php while ( have_posts() ) : the_post(); ?> <li> <article> <h2><a href="<?php esc_url( the_permalink() ); ?>" title="Permalink to <?php the_title(); ?>" rel="bookmark"><?php the_title(); ?></a></h2> <?php the_content(); ?> </article> </li> <?php endwhile; ?> </ol> <?php else: ?> <h2>No posts to display</h2> <?php endif; ?> <div id="colright"></div> <div class="clear"></div>
Can anyone help?
thanks in advance
Viewing 1 replies (of 1 total)
Viewing 1 replies (of 1 total)
- The topic ‘create 2 column posts starkers theme’ is closed to new replies.