[closed] changing phpbb logo to larger image size

This forum is now closed. Please ask all styles-related questions in the phpBB 3.0 Styles Support & Discussion Forum.
Locked
User avatar
MajorFreak
Registered User
Posts: 65
Joined: Fri May 31, 2002 1:26 pm
Location: BC, Canada
Contact:

[closed] changing phpbb logo to larger image size

Post by MajorFreak »

hello, recently i attempted to change the logo for my subsilver template by simply switching the logo_phpBB.gif, but i found my forum title and description was shoved to the far right of my image.

Not being an html expert, i found there was no easy or intuitive way to edit the overall_header.tpl, so i guessed and moved the logo code around a bit.

Unfortunately, this caused my image to be outside the "table" or whatever.

http://umec.oesm.org/phpBB

Code: Select all

<table width="100%" cellspacing="0" cellpadding="10" border="0" align="center"> 
	<tr><td><a href="{U_INDEX}"><img src="templates/subSilver/images/logo_phpBB.gif" border="0" alt="{L_INDEX}" vspace="1" /></a></td></tr><tr> 
		<td class="bodyline"><table width="100%" cellspacing="0" cellpadding="0" border="0">
			<tr> 
				
				<td align="center" width="100%" valign="middle"><span class="maintitle">{SITENAME}</span><br /><span class="gen">{SITE_DESCRIPTION}<br />&nbsp; </span> 
				<table cellspacing="0" cellpadding="2" border="0">
					<tr> 
Last edited by MajorFreak on Wed Sep 14, 2005 11:50 pm, edited 1 time in total.
Thatbitextra
Former Team Member
Posts: 7604
Joined: Mon Mar 21, 2005 5:04 am
Location: A place where something is or could be located; a site.
Contact:

Post by Thatbitextra »

Try this:

Code: Select all

<table width="100%" cellspacing="0" cellpadding="10" border="0" align="center">
  <tr>
	<td class="bodyline"><table width="100%" cellspacing="0" cellpadding="0" border="0">
	  <tr>
		<td><a href="{U_INDEX}"><img src="templates/subSilver/images/logo_phpBB.gif" border="0" alt="{L_INDEX}" vspace="1" /></a></td>
	  </tr>
	  <tr>
		<td align="center" width="100%" valign="middle"><span class="maintitle">{SITENAME}</span><br /><span class="gen">{SITE_DESCRIPTION}<br />&nbsp; </span>
			<table cellspacing="0" cellpadding="2" border="0">
			<tr>
Styles KB
My MODs: Choose Who to Accept PMs From (Prevents unwanted PMs!) | Warn of Old Topic Before Posting Reply
Style: subBlack (Now updated to phpBB 2.0.22 and 5 new color schemes!)
User avatar
MajorFreak
Registered User
Posts: 65
Joined: Fri May 31, 2002 1:26 pm
Location: BC, Canada
Contact:

Post by MajorFreak »

Image Image
Locked

Return to “[2.0.x] Styles Development & Discussion”