WordPress 2.9.1
Theme: Urban Artist by Themelab
Website: http://www.remix-nation.com
<!--header -->
<div id="header">
<h1 id="logo-text">/" title="<?php bloginfo('name'); ?> Homepage"><?php bloginfo('name'); ?></h1>
<p id="intro">
<?php bloginfo('description'); ?>
</p>
<div id="nav">
-
<li<?php if ( is_home() or is_archive() or is_single() or is_paged() or is_search() or (function_exists('is_tag') and is_tag()) ) { echo ' class="current_page_item"'; } ?>>"><span>Home</span>
<?php wp_list_pages('title_li=&depth=1'); ?>
</div>
<!--header ends-->
I am trying to make the title of my blog "The Nation", link to any other page of my site, such as above, where I tried to link the TITLE LOGO TEXT (THE NATION), to another page on my blog, and I created a page titled "Blog" rather than linking back to the homepage. I will then set my homepage to a static page, and my "posts page", will be my newly linked page.
Specifically, I am trying to get my homepage to be http://remix-nation.com/remix/house-playlist/, but it should just say http://www.remix-nation.com, and I am trying to get it so when you click THE NATION, in the header, it will take you to MY BLOG PAGE. Right now THE NATION, in the header, and the home page are set to the same destination, but if its possible to change this, it would be a huge help.
Thanks in advance, I really do appreciate the help