--BANNER TROUBLE-- urrr..... so fustrating<<<>>>>

entreprenuer

Junior Member
Joined
Apr 19, 2009
Messages
199
Reaction score
74
check out my site
Code:
http://forexrobottrader.org
you will notice at the very top right there is an area in which I can get a banner.
There is no theme options to do this!

I am going to have to do it manually..
how must I do this if my header script is the following:
Code:
<!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'); ?>" />
<meta name="distribution" content="global" />
<meta name="robots" content="follow, all" />
<meta name="language" content="en" />

<title><?php wp_title(''); ?><?php if(wp_title('', false)) { echo ' :'; } ?> <?php bloginfo('name'); ?></title>
<link rel="Shortcut Icon" href="<?php echo bloginfo('template_url'); ?>/images/favicon.ico" type="image/x-icon" />

<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="alternate" type="application/atom+xml" title="<?php bloginfo('name'); ?> Atom Feed" href="<?php bloginfo('atom_url'); ?>" />
<link rel="pingback" href="<?php bloginfo('pingback_url'); ?>" />

<?php if ( is_singular() ) wp_enqueue_script( 'comment-reply' ); ?>
<?php wp_head(); ?>

<script type="text/javascript"><!--//--><![CDATA[//><!--
sfHover = function() {
    if (!document.getElementsByTagName) return false;
    var sfEls = document.getElementById("nav").getElementsByTagName("li");

    for (var i=0; i<sfEls.length; i++) {
        sfEls[i].onmouseover=function() {
            this.className+=" sfhover";
        }
        sfEls[i].onmouseout=function() {
            this.className=this.className.replace(new RegExp(" sfhover\\b"), "");
        }
    }

}
if (window.attachEvent) window.attachEvent("onload", sfHover);
//--><!]]></script>

</head>

<body>

<div id="header">

    <div class="headerleft">
        <h1><a href="<?php echo get_option('home'); ?>/"><?php bloginfo('name'); ?></a></h1>
        <?php bloginfo('description'); ?>
    </div>
    
    <!--Replace the # below with the ad destination url.-->
    
    <div class="headerright">
        <p><a href="<?php bloginfo('rss_url'); ?>"><img style="vertical-align:middle" src="<?php bloginfo('template_url'); ?>/images/rss.gif" alt="Subscribe to <?php bloginfo('name'); ?>" /></a><a href="<?php bloginfo('rss_url'); ?>">RSS Feed</a><a href="<?php bloginfo('comments_rss2_url'); ?>"><img style="vertical-align:middle;margin-left:10px;" src="<?php bloginfo('template_url'); ?>/images/rss.gif" alt="Subscribe to <?php bloginfo('name'); ?>" /></a><a href="<?php bloginfo('comments_rss2_url'); ?>">Comments</a></p>
        <a href="#"><img src="<?php bloginfo('template_url'); ?>/images/468x60.gif" alt="Featured Ad" /></a>
    </div>

</div>

<div id="navbar">

    <div id="navbarleft">
        <ul id="nav">
            <li><a href="<?php echo get_settings('home'); ?>">Home</a></li>
            <?php wp_list_pages('title_li=&depth=4&sort_column=menu_order'); ?>
        </ul>
    </div>
    
    <div id="navbarright">
        <form id="searchform" method="get" action="<?php echo $_SERVER['PHP_SELF']; ?>">
        <input type="text" value="Search this website..." name="s" id="s" onfocus="if (this.value == 'Search this website...') {this.value = '';}" onblur="if (this.value == '') {this.value = 'Search this website...';}" />
        <input type="submit" id="sbutt" value="GO" /></form>
    </div>

</div>

<div id="wrap">


THE BANNER TEXT I WANT IS THIS FOLLOWING CODE
Code:
<a href="http://cashflash6.ivybot.hop.clickbank.net">
<img src="http://www.ivybot.com/images/affiliates/gif/Wide Long/ivybot5_468x60.jpg" alt="" width="468" height="60" /></a>
 
it has nothing to do with the header tag. it should be put in the <body>
Can you specify exactly where do you want the banner?

under the recent posts?
 
it has nothing to do with the header tag. it should be put in the <body>
Can you specify exactly where do you want the banner?

under the recent posts?

I want the banner in the top right area. where there is a temporary banner that is 480x60. I want the green 480x60 removed and the new banner in its place.

and there i cant find the <body> area.

please help
thanks
 
Look like the opening body tag is in your header.php file. Just do a Ctrl+f for <body> or 468x60.gif.
 
Its definitely in the header.php file. That banner is likely to be a picture, try searching for "rss" or "comments" within header.php as it is likely to be right next to that.
 
yess... I solved it! thankyou you all for helping me. :)
 
Back
Top