josephgene
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: post formatting HELP!!@alchymyth,
thank you for the reply. Ive read through the articles and unfortunetly i believe it doesnt show me what im looking for.First, i am just wondering how to edit the title in a different <DIV> so it looks like:
DATE|title
DATE|author, time, Categorycan you point me to a place where i can format the DIV like a table?
I guess i could just make a table and place the DIV inside of it?Forum: Fixing WordPress
In reply to: post formatting HELP!!the links above do not work for me because they are truncated.
Forum: Fixing WordPress
In reply to: post formatting HELP!!Thank you for the reply. There are not always images in the post. sometimes it is just text that would be centered in paragraphs. I never thought of a gallery but if a gallery can insert like this and format the text on the side that would be wonderful!
to answer the question: Yes, Yes yes!
I dont know what you mean by “styling the title area”
Forum: Installing WordPress
In reply to: Upgrade to 2.7 Login failed – even tried tutorialalso – when i put in the correct username and password it just says “Please log in again”
Forum: Themes and Templates
In reply to: Show Posts in last 3 daysDouble bump?^^
Forum: Themes and Templates
In reply to: Show Posts in last 3 daysbump^^?
Forum: Themes and Templates
In reply to: Show Posts in last 3 days<div id="container"> <div id="main-col"> <h3 class="blog-title"><a href="<?php echo get_option('home'); ?>/"><em><?php bloginfo('name'); ?></em></a></h3> <span class="logo-spacer"></span> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <div class="post" id="post-<?php the_ID(); ?>"> <h2><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a></h2> <div class="date"><span class="year"><?php the_time('Y') ?></span> <?php the_time('F') ?> <span class="day"><?php the_time('jS') ?></span></div> <div class="comments"><span class="comment-count"><?php comments_popup_link('0', '1', '%'); ?></span> Comments</div> <br clear="all" /> <div class="excerpt"><?php the_content('Read the rest of this entry »'); ?></div> </div> <div class="filed">Filed under <?php the_category(', ') ?> by <?php the_author() ?> on <?php the_time('F jS, Y') ?> @ <?php the_time() ?> </div> <span class="spacer"></span> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.'); ?></p> <?php endif; ?> </div>
So if this is my loop on home.php – then the code goes where?