Okay, I'm going to try and explain this the best I can.
I've edited my "standard table" template in theme.php to display the table INSIDE another table (so I can have it wrapped in images, example picture attached)
However, there's a table that ALL of my tables are in that is usint the standard table template. I just need to know how I can remove this table.. (explained in the attachment below)
Where is that code???
Thanks,
[attachment deleted by admin]
Hi,
in coppermine, we call them themes, not skins.
The table you are looking for is in the thems/yourtheme/template.html, and is the one that surrounds the entire gallery.
I looked there, but it's not in a table that I see.
It's just "{GALLERY}"
I'll look into it though, thanks.
What theme did you base your own theme on?
Yeah, the "{GALLERY}" isn't in a table.
Here is my template.html
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html dir="ltr">
<head>
<title>{TITLE}</title>
{META}
<link rel="stylesheet" href="./themes/hardwired/style.css" />
</head>
<table border="0" width="100%" cellpadding="0" cellspacing="0" align="center">
<tr>
<td width="32" align="left"><a href="index.php?"><img src="images/logo.gif" border="0" /></a></td>
<td width="866" align="right" background="images/misc/header_bg.gif">
</td>
</tr>
</table>
<table width='100%' class='page'>
<tr>
<td width="20%" valign='top'>
<table width="100%" cellspacing="0" cellpadding="0">
<tr>
<td width="2%"><img src="images/misc/top_left.gif" width="28" height="28"></td>
<td width="96%" background="images/misc/top_bg.gif"><font color="888888" size="1" face="Verdana, Arial, Helvetica, sans-serif"><strong>Album
Navigation </strong></font></td>
<td width="2%"><img src="images/misc/top_right.gif" width="28" height="28"></td>
</tr>
<tr>
<td background="images/misc/right_bg.gif"> </td>
<td class="alt1">
<table width="100%" cellspacing="0" cellpadding="2">
<tr>
<td bgcolor="1b1b19">
<div class="smallfont" style="font-weight:bold">{MAIN_MENU2}<br>
</div>
</td>
</tr>
</table>
</td>
<td background="images/misc/left_bg.gif"> </td>
</tr>
<tr>
<td><img src="images/misc/bottom_left.gif" width="28" height="28"></td>
<td background="images/misc/bottom_bg.gif"><font color="888888" size="1" face="Verdana, Arial, Helvetica, sans-serif"> </font></td>
<td><img src="images/misc/bottom_right.gif" width="28" height="28"></td>
</tr>
</table>
<br>
<br>
</td>
<td valign='top' width='100%'>
<table width="100%" align="center" cellpadding="0" cellspacing="0">
<tr>
<td width="2%"><img src="images/misc/top_left.gif" width="28" height="28" /></td>
<td width="96%" background="images/misc/top_bg.gif"><font color="888888" size="1" face="Verdana, Arial, Helvetica, sans-serif"><strong>Navigation<img src="images/misc/swirl.gif" width="125" height="12" /></strong></font></td>
<td width="2%"><img src="images/misc/top_right.gif" width="28" height="28" /></td>
</tr>
<tr>
<td background="images/misc/right_bg.gif"> </td>
<td bgcolor="1b1b19" class="alt1">
<table class="tborder" cellpadding="6" cellspacing="1" border="0" width="100%" align="center">
<tr>
<td class="alt1" width="100%"> <div class="navbar" style="font-size:10pt"><a href="index.php?"><img class="inlineimg" src="images/misc/navbits_start.gif" alt="" border="0" /></a>
<strong>Photo Albums</strong></div></td>
</tr>
</table>
<div align="center">
<table class="tborder" cellpadding="6" cellspacing="0" border="0" width="100%" align="center" style="border-top-width:0px">
<tr align="center">
<!--<td class="vbmenu_control"><a href="index.php?">Home</a></td>-->
<td class="menu_control"><div align="left">{MAIN_MENU1}</div></td>
</tr>
<tr>
<td class="menu_control"><div align="left">{ADMIN_MENU}</div></td>
</tr>
</table>
</div>
</td>
<td background="images/misc/left_bg.gif"> </td>
</tr>
<tr>
<td><img src="images/misc/bottom_left.gif" width="28" height="28" /></td>
<td background="images/misc/bottom_bg.gif"><font color="888888" size="1" face="Verdana, Arial, Helvetica, sans-serif"> </font></td>
<td><img src="images/misc/bottom_right.gif" width="28" height="28" /></td>
</tr>
</table>
<p> {GALLERY}</p>
</td>
<td valign='top'>
</td>
</tr>
</table>
</body>
</html>
Quote from: Casper on May 09, 2004, 08:46:43 PM
What theme did you base your own theme on?
Hardwired.
I appologize for how messy that code is above, I'm still developing it.. :)