creating a new theme creating a new theme
 

News:

CPG Release 1.6.26
Correct PHP8.2 issues with user and language managers.
Additional fixes for PHP 8.2
Correct PHP8 error with SMF 2.0 bridge.
Correct IPTC supplimental category parsing.
Download and info HERE

Main Menu

creating a new theme

Started by bugs, July 01, 2004, 12:43:40 AM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

bugs

Is anybody here, who can help me with my Theme of my Coppermine Gallery? I have installed the Gallery and now i´m trying to make a theme with the same design as my homepage. But it is not so easy.

The gallery is on http://www.eisenerz.tv/test/coppermine
In the homepage it looks so: http://www.eisenerz.tv/test
and it should look such as the photo-mainsite (when you click on "PHOTO")

Please help me!

Thank´s!


bugs

DaMysterious

Quote from: bugs on July 01, 2004, 12:43:40 AM
Is anybody here, who can help me with my Theme of my Coppermine Gallery? I have installed the Gallery and now i´m trying to make a theme with the same design as my homepage. But it is not so easy.

The gallery is on http://www.eisenerz.tv/test/coppermine
In the homepage it looks so: http://www.eisenerz.tv/test
and it should look such as the photo-mainsite (when you click on "PHOTO")

Please help me!

Thank´s!


bugs


Maybe this could help: coppermine.htm

<!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>
<STYLE>BODY {
SCROLLBAR-FACE-COLOR: #d5efff; SCROLLBAR-HIGHLIGHT-COLOR: #0099ff; SCROLLBAR-SHADOW-COLOR: #0099ff; SCROLLBAR-3DLIGHT-COLOR: #0099ff; SCROLLBAR-ARROW-COLOR: #0066ff; SCROLLBAR-TRACK-COLOR: #d5efff; SCROLLBAR-DARKSHADOW-COLOR: #0099ff
}
</STYLE>
</HEAD>
<BODY>
<SCRIPT language=JavaScript type=text/javascript>
<!--
if (document.layers){
window.captureEvents(Event.MOUSEDOWN | Event.MOUSEUP)
window.onmousedown=rightclick;
window.onmouseup=rightclick;
function rightclick(e) {
if (e.which == 3) {
alert('Ooops!!! Rechte Maustaste gedrückt!');
return false;
}
else {
return true;
}
}
}
if (document.all){
function click() {
if (event.button==2) {
alert('copyright 2004 eisenerz.tv')
}
if (event.button==3) {
alert('copyright 2004 eisenerz.tv')}
}
document.onmousedown=click
}
// -->
</SCRIPT>
<TABLE height="100%" cellSpacing=5 cellPadding=5 width="100%" border=0>
 <TBODY>
   <TR>
     <TD
   style="BORDER-RIGHT: #ccd7e0 0px solid; BORDER-TOP: #ccd7e0 0px solid; BORDER-LEFT: #ccd7e0 0px solid; BORDER-BOTTOM: #ccd7e0 0px solid; BACKGROUND-COLOR: #d5efff"
   vAlign=top borderColor=#666666 bgColor=#d5efff> <TABLE cellSpacing=0 cellPadding=0 width="100%" border=0>
         <TBODY>
           <TR>
             <TD align=left width="100%">
               <!--<h1>eisenerz.tv</h1>-->
               <P align=left><SPAN class=topmenu>
                 <!-- BEGIN album_list -->
                 <A
           title=Home
           href="http://www.eisenerz.tv/content/main/center.htm">Home</A> &gt;
                 <A title=Photos
           href="http://www.eisenerz.tv/content/photos/main.htm">Photos</A> &gt;
                 <A title="Gehe zur Alben-Übersicht"
           href="http://www.eisenerz.tv/test/coppermine/index.php?cat=0">Alben-Übersicht</A>
                 </SPAN></P>
               <BR></TD>
           </TR>
         </TBODY>
       </TABLE>
       <IMG height=5 src="themes/classic/images/spacer.gif" width=1><BR>
<TABLE cellSpacing=0 cellPadding=0 width="100%" align=left border=0>
         <TBODY>
           <TR>
             <TD vAlign=top align="center">
               <!--Coppermine Photo Gallery 1.3.0-->
               <table width="100%" height="100%" border="0" cellpadding="20" cellspacing="20" bgcolor="#CCCCCC">
                 <tr>
                   <td valign="top" bordercolor="#666666" bgcolor="#FFFFFF" style="border: 1px solid;">
                     <table width="100%" border="0" cellspacing="0" cellpadding="0">
                       <tr>
                         <td><a href="index.php"><img src="themes/classic/images/site_logo.png" 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>
               <!--Coppermine Photo Gallery 1.3.0-->
             </TD>
           </TR>
         </TBODY>
       </TABLE></TD>
   </TR>
 </TBODY>
</TABLE>
</BODY>
</HTML>


Additional things are your work.
DaMysterious.