• Hey there,

    I did some searching here, and cannot seem to resolve this issue (I’m sure it is me overlooking something very simple…heh).

    Anyhow, I just installed a new theme, and have tried to place my logo within the two bars up top (www.riseabovedesigns.com), and I’ve placed the string code in several spots, but it just won’t pop up.

    Here is the code thus far:

    <!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
    <html xmlns="http://www.w3.org/1999/xhtml" <?php language_attributes(); ?>>
    
    <head profile="http://gmpg.org/xfn/11">
    	<meta http-equiv="Content-Type" content="<?php bloginfo('html_type'); ?>; charset=<?php bloginfo('charset'); ?>" />
    
    	<?php if(is_home() || is_single() || is_page()) { echo '<meta name="robots" content="index,follow" />'; } else { echo '<meta name="robots" content="noindex,follow" />'; } ?>
    
        <?php if (is_single() || is_page() ) : if ( have_posts() ) : while ( have_posts() ) : the_post(); ?>
        <meta name="description" content="<?php metaDesc(); ?>" />
        <?php csv_tags(); ?>
        <?php endwhile; endif; elseif(is_home()) : ?>
        <meta name="description" content="<?php bloginfo('description'); ?>" />
        <meta name="keywords" content="wordpress,wordpress themes,custom theme,magazine three columns,free,tinker priest media,blog,search engine optimization,seo,xhtml valid,css,html,php,mysql,web design,three columns,widget,sidebar,tags,gravatar" />
        <?php endif; ?>
    
        <title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' | '; } ?><?php bloginfo('name'); if(is_home()) { echo ' | '; bloginfo('description'); } ?></title>
    
        <link rel="stylesheet" href="<?php bloginfo('stylesheet_url'); ?>" type="text/css" media="screen" />
        <link rel="alternate" type="application/rss+xml" title="<?php bloginfo('name'); ?> RSS Feed" href="<?php bloginfo('rss2_url'); ?>" />
    	<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />
    <!--[if IE]>
    <link rel="stylesheet" type="text/css" href="<?php bloginfo('template_url'); ?>/iestyles.css" />
    <![endif]-->
    <?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
    <script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/script.js"></script>
    	<?php wp_head(); ?>
    </head>
    
    <body>
    <!-- begin header -->
    <div id="header">
    	<?php if (get_option('uwc_user_login') == "top" || get_option('uwc_user_login') == "topwidget") { ?>
    	<div id="login">
        	<?php
    			global $user_identity, $user_level;
    			if (is_user_logged_in()) { ?>
    
                	<ul>
                    <li><span style="float:left;">Logged in as: <strong><?php echo $user_identity ?></strong></span></li>
    
                    </ul>
    
    <?php
    			} else {
    				echo '<ul>';
    				echo '<li><a href="'; echo bloginfo("url"); echo '/wp-login.php">Log In</a></li>';
    				if (get_option('users_can_register')) { ?>
    					<li class="dot"><a href="<?php echo site_url('wp-login.php?action=register', 'login') ?>"><?php _e('Register') ?></a> </li>
    
                <?php
    				}
    				echo "</ul>";
    			} ?>
        </div>
    <img src="images/main1.jpg" width=665 height=118>
    
        <?php } ?>
    	<?php if (get_option('uwc_search_header') == "yes") { ?>
        <div id="header-search">
        	<?php include(TEMPLATEPATH.'/searchform.php'); ?>
        </div>
        <?php } ?>
    	<?php if (get_option('uwc_logo_header') == "yes" &amp;&amp; get_option('uwc_logo')) { ?>
    
    <img src="images/main1.jpg">
    
        <?php } else { ?>
    
        <?php } ?>
    
    <img src="images/main1.jpg" width=665 height=118>
    
        <div id="navigation">
            <ul class="menu" id="menu">
            <li><a href="<?php bloginfo('url'); ?>">Home</a></li>
    		<?php
            $cats = wp_list_categories('echo=0&amp;title_li=');
            $cats = preg_replace('/title=\"(.*?)\"/','',$cats);
            echo $cats;
            ?>
            </ul>
        </div>
        <div id="sub-navigation">
        	<ul class="pages">
    		<?php wp_list_pages('title_li=&amp;depth=1'); ?>
            </ul>
            <ul>
            <li><a href="<?php bloginfo('url'); ?>?feed=rss2">Subscribe</a></li>
            </ul>
         </div>
    </div>
    <!-- end header -->
    
    <div id="mainwrapper">
    <?php
    	if(get_option('uwc_site_sidebars') == "1" &amp;&amp; get_option('uwc_sidebar_location') == "oneleft") {
    		get_sidebar(1);
    	}
    	if(get_option('uwc_site_sidebars') == "2" &amp;&amp; get_option('uwc_sidebar_location') == "twoseparate") {
    		get_sidebar(1);
    	}
    	if(get_option('uwc_site_sidebars') == "2" &amp;&amp; get_option('uwc_sidebar_location') == "twoleft") {
    		get_sidebar(1);
    		include(TEMPLATEPATH.'/sidebar2.php');
    	}
    	if(get_option('uwc_site_sidebars') == "" &amp;&amp; get_option('uwc_sidebar_location') == "") {
    		get_sidebar(1);
    	}
    	?>
    	<div id="leftcontent">

    Any help in this matter would be much appreciated.

    Thanks for your time – Cheers.

    -Ditch

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thread Starter ditch

    (@ditch)

    I should also note that I have upload the image into every image directory on my server . . . just in case it is trying to find it outside of the template’s image folder.

    Thread Starter ditch

    (@ditch)

    Heh . . .

    I figured it out. This theme comes with an optional way to upload your logo, so that was all it took.

    Hope this might help someone else in the future…and for the record the template is magazine basic.

    Cheers,

    -Ditch

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

The topic ‘header/logo issues’ is closed to new replies.