Gossamer Forum
Home : Products : DBMan : Customization :

Handle big5 for header

Quote Reply
Handle big5 for header
Hello all,

I try to using the big5 for the category fields.
However dbman carry out the error to handle the big5 code.
Would you tell me how to mod the dbman to handle big5 code to auto-gen title?

Best regards

Gab
Quote Reply
Re: Handle big5 for header In reply to
If I understand you correctly you are trying to add your site logo "big5" to your output pages?

If so, you would include your graphic within the headers of script.

In sub html_page_top

you can pretty much define all your page settings for example something like this:

&html_print_headers;

print qq|
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 3.2//EN">
<html><head><title>$html_title: $page_title</title></head>
<body background="../../images/background.gif" TEXT="#000000" LINK="#3333FF" VLINK="#23238E" ALINK="#660000">
<A NAME="top"></A>
<CENTER><IMG SRC="../../images/big5.jpg" ALT="[ Logo ]" width=400 height=60 BORDER=0 ALIGN=middle><BR>
<font size="+1"><B>$site_title</B></font></CENTER><P> |;
}