forum.coppermine-gallery.net

Support => cpg1.3.x Support => Older/other versions => cpg1.3 Themes/Skins/Templates => Topic started by: danieljradcliffe on January 06, 2005, 12:30:56 am

Title: Centering
Post by: danieljradcliffe on January 06, 2005, 12:30:56 am
Hello, on my photogallery you see  www.danieljradcliffe.com/photogallery   a bunch of info is on the side, I can't figure out how to get that to go down a few <br>'s so the banner will be centered. Any ideas?
Title: Re: Centering
Post by: kegobeer on January 06, 2005, 05:00:12 am
Do you know how a <table> construct works?

In template.html, you need to put your logo in one row and the menu in a row beneath it.  Something like this.

Code: [Select]
                <table width="100%" border="0" cellspacing="0" cellpadding="0">
                       <tr>
                                <td align="center"><a href="index.php"><img src="themes/classic/images/site_logo.png" alt="" border="0" /><br /></a></td>
                       </tr>
                       <tr>
                                <td width="100%" align="center">
                                        <h1>{GAL_NAME}</h1>
                                        <h3>{GAL_DESCRIPTION}</h3><br />
                                        {MAIN_MENU}
                                </td>
                        </tr>
                </table>

Don't send me private messages unless I request it.