Forum Replies Created

Viewing 7 replies - 1 through 7 (of 7 total)
  • Thread Starter mygly

    (@mygly)

    Thanks, that seems to have worked. I saw something different in another file it was this.
    <?php
    // if we have more than one page then show the nav at the top

    if (anymorepages()) { ?>
    <div class="navigation">
    <div class="alignleft"><?php posts_nav_link('','','&laquo; Previous Entries') ?></div>
    <div class="alignright"><?php posts_nav_link('','Next Entries &raquo;','') ?></div>
    </div>

    <?php } ?>

    <?php if (have_posts()) : ?>

    <?php while (have_posts()) : the_post(); ?>

    <div class="post">
    <!-- Post title -->
    <h3 class="storytitle" id="post-<?php the_ID(); ?>"><a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link: <?php the_title(); ?>"><?php the_title(); ?></a>&nbsp;&nbsp;<span><?php comments_popup_link_title(__('0'), __('1'), __('%'), __(''), __(''), 'Comments: '.get_the_title()); ?></span><?php edit_post_link(" <small>e</small>"); ?></h3>
    <!-- Post meta -->
    <div class="meta">
    Posted on <?php the_time('F jS, Y') ?>. <!-- By <?php the_author() ?>. --> About <?php the_category(', ') ?>.</div>

    <!-- Actual post -->
    <div class="storycontent">
    <?php the_content(); ?>
    </div>
    <!--
    <?php trackback_rdf(); ?>
    -->
    </div>

    <?php endwhile; ?>

    <?php
    // if we have more than one page then show the nav at the bottom

    if (anymorepages()) { ?>
    <div class="navigation">
    <div class="alignleft"><?php posts_nav_link('','','&laquo; Previous Entries') ?></div>
    <div class="alignright"><?php posts_nav_link('','Next Entries &raquo;','') ?></div>
    </div>

    <?php } ?>

    <?php else : ?>

    <h2 class="center">Not Found</h2>
    <p class="center"><?php _e("Sorry, but you are looking for something that isn't here."); ?></p>
    <?php include "searchform.php"; ?>

    <?php endif; ?>

    <div style="clear: both;"></div>

    </div>

    <?php // get footer ?>

    <?php include "footer.php"; ?>

    </div>

    </div>

    </body>

    </html>

    Thread Starter mygly

    (@mygly)

    Thread Starter mygly

    (@mygly)

    The only code i have is in the index for the theme, and it’s
    <?php // get the nav etc ?>
    <?php include "topbanner.php"; ?>

    Thread Starter mygly

    (@mygly)

    Well i don’t have them up right now because when i do it bullets virtually every heading because they are all in <li>‘s so i’d probably have to create a special id or class for certain content. All I want bullets on is the links under “Links:” and things like that.

    Thread Starter mygly

    (@mygly)

    Thank you Moridin, your <li> </li> tip worked, I also commented out the meta links/information. The only things I really have to still figure out is how to get the actual links to be the only things to have bullets when I put them in, because the header “Links:” and the header “Search:” and stuff have bullets next to them. Also how to fix my sites look in IE, for some reason the <hr> isn’t lined up with the top of the columns like it is in firefox, and also the height: 95% doesn’t seem to work for the left column in IE.

    Thread Starter mygly

    (@mygly)

    putting what all in one
    <li></li>?

    Thread Starter mygly

    (@mygly)

    Well I want to remove one of the boxes and put the serach or archive inside the others box, so that there is only one. When i look at the source on the page through the browser I can see a bunch of stuff, but when I go to edit the index.php none of it is there… I’m wondering if its possible to edit those.

Viewing 7 replies - 1 through 7 (of 7 total)