How to add an image and links to gallery?
marvc
Joined: 2002-08-28
Posts: 31 |
Posted: Fri, 2002-09-13 21:49 |
I guess its safe to say that I'm having a hard following along with the other threads on how to customize Gallery. I make copies of the album.header & gallery.header files and still don't see where it's possible to add my images and links. I can see where to change the bgcolor in the style sheet. What am I overlooking? Any response is appreciated. |
|
Posts: 31
Wow...man you guys are not going to answer this post? I get the message. It's been 4 days. :eek:
Posts: 19
Posts: 19
Posts: 19
Posts: 13451
That should be easy enough.. :smile:
Just add an image tag (<img src="") to the gallery.header file... :smile:
Posts: 13451
somehow double posted. Sorry.
Posts: 13451
I've done something similar, but i'm using php includes throughout my site (beta..:smile: My gallery.header has the following:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.0 Transitional//EN">
<html>
<head>
<title>My Gallery Wrapper</title>
</head>
<body>
<table width="800" align="center" border="0">
<tr>
<td colspan="3">
<?php include("header2.php"); ?>
</td>
</tr>
<tr>
<td width="120" valign="top" border="0">
<?php include("left2.php"); ?>
</td>
<td width="800" VALIGN="TOP">
<!-- end of header file -->
This way it's pretty easy to maintain a sites design, since everything is in the header/footer/left (navbar) include files.
My gallery.footer looks like this:
<!-- begin footer file -->
</td>
</tr>
<tr>
<td colspan="2" valign="top"><?php include("footer2.php"); ?></td>
</tr>
</table>
</body>
</html>