forum.coppermine-gallery.net

Support => cpg1.3.x Support => Older/other versions => cpg1.3 Themes/Skins/Templates => Topic started by: nbody on April 07, 2006, 06:24:47 am

Title: front page border.. ? can't figure this out at all
Post by: nbody on April 07, 2006, 06:24:47 am
My goal is to change the color and thickness of the 1px border that runs between the background color and the main table edge. I have removed the background color and subbed an image. I have also removed the table color as well. I wish to use the existing border to "break up the space" a bit, and have been able to easily change its width... but not its color. I cannot for the life of me figure out what simple step I am missing here. Can anyone help?

This is the code as it is right now. The thickened border remains black no matter what I try.

Oh, and this is just a barely tweaked "classic" theme. 

Code: [Select]
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">
<html dir="{LANG_DIR}">
<head>
<title>{TITLE}</title>
<meta http-equiv="Content-Type" content="text/html; charset={CHARSET}" />
<meta http-equiv="Pragma" content="no-cache" />
{META}
<link rel="stylesheet" href="themes/classic/style.css" />
<script type="text/javascript" src="scripts.js"></script>
<!--
$Id: template.html,v 1.1 2004/06/11 09:20:08 tarique Exp $
-->
</head>
<body>
<body style="background-image: url(http://www.mysite.org/gallery/themes/classic/images/background.jpg);">
<table width="100%" height="100%" border="0" cellpadding="20" cellspacing="20">
<tr>
        <td valign="top" bordercolor="#FFFFFF" style="border: 20px solid;">
                <table width="100%" border="0" cellspacing="0" cellpadding="0">
                       <tr>
                                <td><a href="index.php"><img src="themes/classic/images/logo_animation.gif" alt="" border="0" /><br /></a></td>
                                <td width="100%" align="center">
                                        <h1>{GAL_NAME}</h1>
                                        <h3>{GAL_DESCRIPTION}</h3><br />
                                        {MAIN_MENU}
                                </td>
                        </tr>
                </table>
                <table width="100%" border="0" cellspacing="0" cellpadding="0">
                  <tr>
                  <td align="center" valign="top">{LANGUAGE_SELECT_FLAGS}</td></tr>
                 <tr> <td align="center" valign="top">{LANGUAGE_SELECT_LIST}
                  {THEME_SELECT_LIST}</td>
                  </tr>
                </table>
                <img src="images/spacer.gif" width="1" height="15" /><br />
                <table width="100%" border="0" align="center" cellpadding="0" cellspacing="0">
                        <tr>
                                <td align="center" valign="top">
                                        {ADMIN_MENU}
                                        {GALLERY}
                                </td>
                        </tr>
                </table>
                </td>
        </tr>
</table>
</body>
</html>


I have changed border color="#FFFFFF" to everything i can conceive of with no result. Damnit if I am lost here or just tired.

Thanks for any help.



NBody
Title: Re: front page border.. ? can't figure this out at all
Post by: Joachim Müller on April 07, 2006, 08:02:09 am
change
Code: [Select]
<td valign="top" bordercolor="#FFFFFF" style="border: 20px solid;">to
Code: [Select]
<td valign="top" style="border:20px solid #FFFFFF;">
Title: Re: front page border.. ? can't figure this out at all
Post by: nbody on April 19, 2006, 09:26:22 pm
Thank you!