Wordpress HTML problem

Discussion in 'HTML & Website Design' started by Soccerplayur012, Dec 21, 2007.

  1. #1
    <!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'); ?>" />
    
    <title><?php bloginfo('name'); ?> <?php if ( is_single() ) { ?> &raquo; Blog Archive <?php } ?> <?php wp_title(); ?></title>
    
    <meta name="generator" content="WordPress <?php bloginfo('version'); ?>" /> <!-- leave this for stats -->
    <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'); ?>" />
    
    <?php
     wp_head(); ?>
    </head>
    <body>
    <div id="page_top">
    <div id="page">
    
    <div id="header">
    	<div id="header_top">
    		<div id="header_title">
    			<?php bloginfo('name'); ?> | <span><?php bloginfo('description'); ?></span>
    		</div>
    	</div>
    	<div id="header_end">
    
    		<div id="menu">
    			<a href="<?php echo get_option('home'); ?>/">HOME</a><?php $my_query = new WP_Query('post_type=page&orderby=name&order=ASC'); ?>
    </img>
    <?php while ($my_query->have_posts()) : $my_query->the_post(); 
    
    if( $post->post_parent == 0 )
    {?>
    							&nbsp;&nbsp;|&nbsp;&nbsp;<a href="<?php the_permalink(); ?>"><?php the_title(); ?></a>
    							</td>
    							
    <?php } endwhile; 
    ?>
    		</div>
    		<div id="menu_search_box">
    			<form method="get" id="searchform" style="display:inline;" action="<?php bloginfo('home'); ?>/">
    			<span>Search:&nbsp;</span>
    			<input type="text" class="s" value="<?php the_search_query(); ?>" name="s" id="s" />&nbsp;
    			<input type="image" src="<?php bloginfo('stylesheet_directory'); ?>/images/go.gif" value="Submit" class="sub"   />
    			</form>
    		</div>
    	</div>
    </div>
    
    <div id="blog">
    <div id="blog_top">
    	<div id="blog_left">
    		<?php get_sidebar(); ?>
    	</div>
    	<div id="blog_center">
    Code (markup):
    That is my header code in WP. I need to get an image in place of it (prepsx.com/nfl)

    How do I do so?
     
    Soccerplayur012, Dec 21, 2007 IP
  2. Xavier_3D

    Xavier_3D Well-Known Member

    Messages:
    1,299
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    140
    #2
    <?php bloginfo('name'); ?> | <span><?php bloginfo('description'); ?>

    Replace this with.
    <img src="Image URL" alt="Any Text you want to appear, when the image is not loaded">

    This will replace your Blog Name with the Image.
     
    Xavier_3D, Dec 21, 2007 IP
    Soccerplayur012 likes this.
  3. Soccerplayur012

    Soccerplayur012 Peon

    Messages:
    1,291
    Likes Received:
    55
    Best Answers:
    0
    Trophy Points:
    0
    #3
    Bahh.

    Thanks sir, repped.
     
    Soccerplayur012, Dec 22, 2007 IP
  4. Soccerplayur012

    Soccerplayur012 Peon

    Messages:
    1,291
    Likes Received:
    55
    Best Answers:
    0
    Trophy Points:
    0
    #4
    Soccerplayur012, Dec 22, 2007 IP
  5. kiviniar

    kiviniar Notable Member

    Messages:
    1,964
    Likes Received:
    256
    Best Answers:
    0
    Trophy Points:
    255
    #5
    kiviniar, Dec 22, 2007 IP
  6. Xavier_3D

    Xavier_3D Well-Known Member

    Messages:
    1,299
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    140
    #6
    Ya you need to provide the complete Image Target as kiviniar said.
     
    Xavier_3D, Dec 22, 2007 IP
  7. Soccerplayur012

    Soccerplayur012 Peon

    Messages:
    1,291
    Likes Received:
    55
    Best Answers:
    0
    Trophy Points:
    0
    #7
    I'm confused -- what does that mean? I've uploaded nflblogheader1.jpg to my public_html/nfl folder.. should I upload it to something like pub_html/nfl/wp-content/uploads ?
     
    Soccerplayur012, Dec 22, 2007 IP
  8. Xavier_3D

    Xavier_3D Well-Known Member

    Messages:
    1,299
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    140
    #8
    Not Necessarily. But do this.

    You uploaded your Image for e.g. in

    Public_html/nfl/Image01.gif

    Now in the Image URL: <img src="nfl/Image01.gif" alt="Any Text you want to appear, when the image is not loaded">
     
    Xavier_3D, Dec 22, 2007 IP
  9. Soccerplayur012

    Soccerplayur012 Peon

    Messages:
    1,291
    Likes Received:
    55
    Best Answers:
    0
    Trophy Points:
    0
    #9
    oooh

    Alright, that's clearer, thanks!
     
    Soccerplayur012, Dec 22, 2007 IP
  10. Soccerplayur012

    Soccerplayur012 Peon

    Messages:
    1,291
    Likes Received:
    55
    Best Answers:
    0
    Trophy Points:
    0
    #10
    When I load the image, it's grossly disproportionate. How do I get it to seamlessly replace the blue bar currently on the screen? It currently takes up about half of that space when I upload it. (prepsx.com/nfl)
     
    Soccerplayur012, Dec 22, 2007 IP
  11. Soccerplayur012

    Soccerplayur012 Peon

    Messages:
    1,291
    Likes Received:
    55
    Best Answers:
    0
    Trophy Points:
    0
    #11
    Anyone? Thanks in advance.
     
    Soccerplayur012, Dec 22, 2007 IP
  12. Xavier_3D

    Xavier_3D Well-Known Member

    Messages:
    1,299
    Likes Received:
    25
    Best Answers:
    0
    Trophy Points:
    140
    #12
    <img src="nfl/image01.jpg width="Your Header Width" height="Your Header Heigh" border=0">

    Well You can use this one. But make sure your header has resolutions more than this or atleast equal to the Widths and heights, you mention here.
     
    Xavier_3D, Dec 22, 2007 IP