Gossamer Forum
Home : Products : Links 2.0 : Installation -- Unix :

Banner in Headers not working?

Quote Reply
Banner in Headers not working?
I read one of the earlier FAQS on placing a banner on my pages
....response directions below ...


$output = qq~
<$dtd>
<html>
<head>
<title>$site_title: $category_clean</title>
<meta name="description" content="$meta_name">
<meta name="keywords" content="$meta_keywords">
<$css>
</head>
<$site_body>
<p align="center"><a href="http://mysite.com"><img
src="http://mysite.com/logo.jpg" border="0" width="500"
height="50"></a></p>
<h1>$site_title: $category_clean</h1>
$site_menu
~;
$output .= qq~
$site_search
~;
$output .= qq~
<p>$category_name_escaped</p>

I cut & pasted into my site_html.pl and added my banner url, rebuilt
my pages, but nothing changed. Did I miss something in the
translation?
Quote Reply
Re: Banner in Headers not working? In reply to
 
Quote:
<p align="center"><a href="http://mysite.com"><img
src="http://mysite.com/logo.jpg" border="0" width="500"
height="50"></a></p>

Is the name of your site really "mysite.com" and the name of the graphic really "logo.jpg"? If not, you need to change the URL and name of the graphic to what it is for your site.
Quote Reply
Re: Banner in Headers not working? In reply to
Got it fixed. Thanks.