I'm having a hard time understanding your post, but I think you mean to edit
themes/original/header.php since you use the original theme.
Also note, most of the colors, fonts etc can be tweaked by editing the style sheet in the same directory themes/original/style.css
In header.php, you may want to edit the logo, and perhaps the URL it's href points to ..
Notice this is basic HTML, just assigned to PHP variables ...
| Code: |
$html .= "\"><td class=\"title\" nowrap=\"nowrap\" valign=\"bottom\"><a href=\"./directory/\"";
if ($usesession == "yes"){$html .= "?". session_name() . "=" . session_id() . "";}
$html .= " target=\"_top\"><img src=\"./themes/" . $theme . "/title.gif\" align=\"left\" width=\"200\" height=\"49\" ";
$html .= "border=\"0\" ";
$html .= "alt=\"" . $gl["SiteTitle"] . "\" title=\"" . $gl["SiteTitle"];
$html .= "\" /></a></td><td align=\"right\" nowrap=\"nowrap\"> ";
|
So to make the href go elsewhere, just replace ./directory/ with the new URL
To use a different graphic as teh logo you could simnply overwrite title.gif with your own file and change the width/height accordingly.
Like I said this is just basic HTML, but since it's assigned to a PHP variable using double quotes, you need to be careful when using double quotes in your HTML, they would need to be escaped with a backslash like this...
| Code: |
$html .= " target=\"_top\"><img src=\"./themes/"
|
If I have totally misunderstood your question, please try rephrasing it.