mygly
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Supernav (horizontal nav) only appears on homepageThanks, 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 topif (anymorepages()) { ?>
<div class="navigation">
<div class="alignleft"><?php posts_nav_link('','','« Previous Entries') ?></div>
<div class="alignright"><?php posts_nav_link('','Next Entries »','') ?></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> <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 bottomif (anymorepages()) { ?>
<div class="navigation">
<div class="alignleft"><?php posts_nav_link('','','« Previous Entries') ?></div>
<div class="alignright"><?php posts_nav_link('','Next Entries »','') ?></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>
Forum: Themes and Templates
In reply to: Supernav (horizontal nav) only appears on homepageForum: Themes and Templates
In reply to: Supernav (horizontal nav) only appears on homepageThe only code i have is in the index for the theme, and it’s
<?php // get the nav etc ?>
<?php include "topbanner.php"; ?>Forum: Themes and Templates
In reply to: Combining search and archives into one column?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.Forum: Themes and Templates
In reply to: Combining search and archives into one column?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 theheight: 95%
doesn’t seem to work for the left column in IE.Forum: Themes and Templates
In reply to: Combining search and archives into one column?putting what all in one
<li></li>
?Forum: Themes and Templates
In reply to: Combining search and archives into one column?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.