How do I centre my logo and add a link to my forum ? How do I centre my logo and add a link to my forum ?
 

News:

CPG Release 1.6.28
added submissions from {406man}
cleaned up a few PHP (8.4) deprecations
fixed PHP deprecation in calendar
removed security vulnerability
(please upgrade when possible)

Main Menu

How do I centre my logo and add a link to my forum ?

Started by AndyA, April 30, 2005, 05:07:39 PM

Previous topic - Next topic

0 Members and 1 Guest are viewing this topic.

AndyA

Hi all,
I've done a search on how to centre my Coppermine 1.3.2 logo but didn't spot the answer, can anyone assist ?
I'm using the vBulletin theme and have uploaded my forum logo but now I need to centre it if possible, can anyone tell me how I should do it ?
Also I'd like to place a link back to my forum some where at the top of my album page.

Many thanks
Andy

http://throttlejockey.co.uk/coppermine/index.php

donnoman

in your template.html find:

<TD align=left><a href="index.php"><img src="themes/vbulletin/images/site_logo.png" alt="" border="0" /></a></td></tr>


replace with:

<TD align=center><a href="index.php"><img src="themes/vbulletin/images/site_logo.png" alt="" border="0" /></a></td></tr>


Should do it.

AndyA

That did the trick, much appreciated.  ;D (any idea how to put in a link to my forum).

donnoman

find:

<TD align=center><a href="index.php"><img src="themes/vbulletin/images/site_logo.png" alt="" border="0" /></a></td></tr>


replace with

<TD align=center><a href="http://www.throttlejockey.co.uk/forum"><img src="themes/vbulletin/images/site_logo.png" alt="" border="0" /></a></td></tr>

Joachim Müller

this is most basic HTML, you better learn the most basic aspects of html if you plan to run your own website. Good place to start: http://www.w3schools.com/

AndyA


asandara

hmm I think mine is somewhat like this problem, but I want to know where I can find info on how to change my logo? Cause I have it changed on my template.html and it doesn't show. Is there something that I don't know or something that I need to change?!

Joachim Müller