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?
I simply want to add nav links and an image similar to what's done here:
http://www.videoscopeusa.com/gallery/

Any response is appreciated.

 
marvc

Joined: 2002-08-28
Posts: 31
Posted: Wed, 2002-09-18 03:59

Wow...man you guys are not going to answer this post? I get the message. It's been 4 days. :eek:

 
mikem

Joined: 2002-08-22
Posts: 19
Posted: Wed, 2002-09-18 17:04
 
mikem

Joined: 2002-08-22
Posts: 19
Posted: Wed, 2002-09-18 17:07
 
mikem

Joined: 2002-08-22
Posts: 19
Posted: Wed, 2002-09-18 17:08
 
h0bbel
h0bbel's picture

Joined: 2002-07-28
Posts: 13451
Posted: Wed, 2002-09-18 17:59

That should be easy enough.. :smile:

Just add an image tag (<img src="") to the gallery.header file... :smile:

 
h0bbel
h0bbel's picture

Joined: 2002-07-28
Posts: 13451
Posted: Wed, 2002-09-18 17:59

somehow double posted. Sorry.

 
h0bbel
h0bbel's picture

Joined: 2002-07-28
Posts: 13451
Posted: Wed, 2002-09-18 19:15

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>