Hello all,
Where is the document that I can change out the Coppermine header for one I can use?
Don't know much about php but if someone can point me in the right direction, I can work with it.
thanks,
azjt
Edit your theme's template.html.
I have that page open and when I go to add just plain gibberish to see if I am making a change I dont see anything. Here is the link and the code. I am just not understanding page relationships. I can view it i Live Data mode in Dreamweaver and see the markup, but cannot edit it.
Please advise
http://jlthompson.com/cpg143/
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="{LANG_DIR}">
<head>
<meta http-equiv="Content-Type" content="text/html; charset={CHARSET}" />
<meta http-equiv="Pragma" content="no-cache" />
<title>{TITLE}</title>
<link rel="stylesheet" type="text/css" href="themes/hardwired/style.css" /></head>
{META}
<script type="text/javascript" src="scripts.js" ></script>
<!-- $Id: template.html,v 1.12 2005/12/04 03:22:35 donnoman Exp $ -->
{CUSTOM_HEADER}
<body>
<!-- HERE IS MY CODE BLOCK -->
<table>
<td>Here is code that I have added to see if there is any change</td>
</table>
<!-- HERE IS MY CODE BLOCK -->
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td width="53" rowspan="3" id="far-left"><img src="themes/hardwired/images/far-left.gif" width="54" height="14" alt="" /></td>
<td width="18" class="middle-left"><img src="themes/hardwired/images/middle-left.gif" width="18" height="14" alt="" /></td>
<td height="62" class="right-banner">
<div class="left-banner">
<div class="gal_name">{GAL_NAME}</div>
<div class="gal_description">{GAL_DESCRIPTION}</div>
</div>
</td>
<td width="19" class="middle-right"><img src="themes/hardwired/images/middle-right.gif" width="19" height="14" alt="" /></td>
<td width="53" rowspan="3" class="far-right"><img src="themes/hardwired/images/far-right.gif" width="53" height="14" alt="" /></td>
</tr>
<tr>
<td width="18" class="middle-left"> </td>
<td class="gallery"><div align="right" class="topmenu"> {SYS_MENU} </div>
<br />
<div align="left" class="topmenu">{SUB_MENU}</div> <br />
<div align="center"> {THEME_SELECT_LIST} {LANGUAGE_SELECT_LIST} </div>
<br />
{ADMIN_MENU} {GALLERY}</td>
<td width="19" class="middle-right"> </td>
</tr>
<tr valign="baseline">
<td width="18" class="middle-left"><img src="themes/hardwired/images/bottom-left.gif" width="18" height="31" alt="" /></td>
<td class="bottom-middle"> </td>
<td width="19" class="middle-right"><img src="themes/hardwired/images/bottom-right.gif" width="19" height="31" alt="" /></td>
</tr>
</table>
<br />
<div align="center"> {LANGUAGE_SELECT_FLAGS} <br />
<br />
</div>
{CUSTOM_FOOTER}
{VANITY}
</body>
</html>
Use a text editor and enter some html that is actually valid.
Hi,
That code is the code from Coppermine except for the code i added:
<!-- HERE IS MY CODE BLOCK -->
<table>
<td>Here is code that I have added to see if there is any change</td>
</table>
<!-- HERE IS MY CODE BLOCK -->
i am puzzled
You need to use <tr> between table and td.
I just noticed that. After fixing that I saved it and checked the file on the server and the change was made.
Here is the link:
http://jlthompson.com/cpg143/
Here is the code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="{LANG_DIR}">
<head>
<meta http-equiv="Content-Type" content="text/html; charset={CHARSET}" />
<meta http-equiv="Pragma" content="no-cache" />
<title>{TITLE}</title>
<link rel="stylesheet" type="text/css" href="themes/hardwired/style.css" /></head>
{META}
<script type="text/javascript" src="scripts.js" ></script>
<!-- $Id: template.html,v 1.12 2005/12/04 03:22:35 donnoman Exp $ -->
{CUSTOM_HEADER}
<body>
<!-- HERE IS MY CODE BLOCK -->
<table width="100%" height="30">
<tr>
<td>Here is code that I have added to see if there is any change</td>
</tr>
</table>
<!-- HERE IS MY CODE BLOCK -->
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td width="53" rowspan="3" id="far-left"><img src="themes/hardwired/images/far-left.gif" width="54" height="14" alt="" /></td>
<td width="18" class="middle-left"><img src="themes/hardwired/images/middle-left.gif" width="18" height="14" alt="" /></td>
<td height="62" class="right-banner">
<div class="left-banner">
<div class="gal_name">{GAL_NAME}</div>
<div class="gal_description">{GAL_DESCRIPTION}</div>
</div>
</td>
<td width="19" class="middle-right"><img src="themes/hardwired/images/middle-right.gif" width="19" height="14" alt="" /></td>
<td width="53" rowspan="3" class="far-right"><img src="themes/hardwired/images/far-right.gif" width="53" height="14" alt="" /></td>
</tr>
<tr>
<td width="18" class="middle-left"> </td>
<td class="gallery"><div align="right" class="topmenu"> {SYS_MENU} </div>
<br />
<div align="left" class="topmenu">{SUB_MENU}</div> <br />
<div align="center"> {THEME_SELECT_LIST} {LANGUAGE_SELECT_LIST} </div>
<br />
{ADMIN_MENU} {GALLERY}</td>
<td width="19" class="middle-right"> </td>
</tr>
<tr valign="baseline">
<td width="18" class="middle-left"><img src="themes/hardwired/images/bottom-left.gif" width="18" height="31" alt="" /></td>
<td class="bottom-middle"> </td>
<td width="19" class="middle-right"><img src="themes/hardwired/images/bottom-right.gif" width="19" height="31" alt="" /></td>
</tr>
</table>
<br />
<div align="center"> {LANGUAGE_SELECT_FLAGS} <br />
<br />
</div>
{CUSTOM_FOOTER}
{VANITY}
</body>
</html>
You are using igames, so edit igames template.html not hardwired.
That is funny because I am using the template in the Hardwired folder...?????
the images are in the hardwired folder:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml" dir="{LANG_DIR}">
<head>
<meta http-equiv="Content-Type" content="text/html; charset={CHARSET}" />
<meta http-equiv="Pragma" content="no-cache" />
<title>{TITLE}</title>
<link rel="stylesheet" type="text/css" href="themes/hardwired/style.css" /></head>
{META}
<script type="text/javascript" src="scripts.js" ></script>
<!-- $Id: template.html,v 1.12 2005/12/04 03:22:35 donnoman Exp $ -->
{CUSTOM_HEADER}
<body>
<!-- HERE IS MY CODE BLOCK -->
<table width="100%" height="30">
<tr>
<td>Here is code that I have added to see if there is any change</td>
</tr>
</table>
<!-- HERE IS MY CODE BLOCK -->
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr valign="top">
<td width="53" rowspan="3" id="far-left"><img src="themes/hardwired/images/far-left.gif" width="54" height="14" alt="" /></td>
<td width="18" class="middle-left"><img src="themes/hardwired/images/middle-left.gif" width="18" height="14" alt="" /></td>
<td height="62" class="right-banner">
<div class="left-banner">
<div class="gal_name">{GAL_NAME}</div>
<div class="gal_description">{GAL_DESCRIPTION}</div>
</div>
</td>
<td width="19" class="middle-right"><img src="themes/hardwired/images/middle-right.gif" width="19" height="14" alt="" /></td>
<td width="53" rowspan="3" class="far-right"><img src="themes/hardwired/images/far-right.gif" width="53" height="14" alt="" /></td>
</tr>
<tr>
<td width="18" class="middle-left"> </td>
<td class="gallery"><div align="right" class="topmenu"> {SYS_MENU} </div>
<br />
<div align="left" class="topmenu">{SUB_MENU}</div> <br />
<div align="center"> {THEME_SELECT_LIST} {LANGUAGE_SELECT_LIST} </div>
<br />
{ADMIN_MENU} {GALLERY}</td>
<td width="19" class="middle-right"> </td>
</tr>
<tr valign="baseline">
<td width="18" class="middle-left"><img src="themes/hardwired/images/bottom-left.gif" width="18" height="31" alt="" /></td>
<td class="bottom-middle"> </td>
<td width="19" class="middle-right"><img src="themes/hardwired/images/bottom-right.gif" width="19" height="31" alt="" /></td>
</tr>
</table>
<br />
<div align="center"> {LANGUAGE_SELECT_FLAGS} <br />
<br />
</div>
{CUSTOM_FOOTER}
{VANITY}
</body>
</html>
You are using the igames theme on your gallery so changing the template for hardwired does nothing.
http://jlthompson.com/cpg143/index.php?theme=igames
http://jlthompson.com/cpg143/index.php?theme=hardwired
@azjennifer: when posting code on a board like this one, try using the bbcode tags [ c o d e ] your code goes here [ / c o d e ] (without the spaces) - there even is a button that adds the bbcode stuff for you ((https://coppermine-gallery.com/forum/proxy.php?request=http%3A%2F%2Fforum.coppermine-gallery.net%2FThemes%2Fdefault%2Fimages%2Fbbc%2Fcode.gif&hash=9c3ac1c6624fb9904122fa44d14dc69fad5468fb)). Makes your postings readable.