andao
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Stopping a header repeatThe code ended up being “no-repeat top center;” instead of vice versa, but in either case your info was excellent. Everything is working as planned.
Thank you sir or madam!
Forum: Fixing WordPress
In reply to: Reordering a single categoryThanks for your response, but not so simple I’m afraid. I have three static posts, and one post that will change daily. So the only option under that method would be to alter all the posting dates daily (to keep the changing post as the “oldest”)
A reverse chronological order would keep the changing post at the bottom, which is what I’m going for.
Forum: Fixing WordPress
In reply to: Want a category to sort posts differentlyReverse chronological order would be perfect, could you send the code for that? Which php should I edit? Index? Thank you.
Forum: Fixing WordPress
In reply to: Add a “Home” link to headerFigured it out. Here’s the code, for posterity. Thanks again.
<div id="navbar"> <div id="navbarleft"> <ul id="nav"> <li><a href="<?php echo get_option('home'); ?>">Home</a></li>Forum: Fixing WordPress
In reply to: Add a “Home” link to headerThank you, but I’m still having some problems. I added that code into a new page titled “Home” but clicking on it still returns to a blank page. Maybe I’m entering the code incorrectly? Here’s what the people who initially set up our website entered. (I’m thinking the div id is “navbar?”)
<div id="navbar"> <div id="navbarleft"> <ul id="nav"> <?php wp_list_pages('title_li=&depth=2&sort_column=menu_order'); ?> </ul> </div>Thanks!