How Can I Add An Image To The Left Of My Forum Logo

Mr-Ice-Man

New Member
How can i add an image to the left top corner of my forum?
My logo is set to the middle on my style i have...

Take alook at the image ive attatched to see how i want it.
Thanks.
 

Error 404

New Member
Hmmm, okay.. Try This :

1) Find This Line In Your Header :
<td align="center" valign="top"><img src="$stylevar[imgdir_misc]/logo.png" alt="" /></td>
2) below add :
<td align="right" valign="top"><img src="$stylevar[imgdir_misc]/IMAGENAME.png" alt="" /></td>
2.5) Change IMAGENAME.png to something you want.
3) Upload a picture to the yourstyle/misc/ folder.
4) If you got questions, ask ;)
 

Mr-Ice-Man

New Member
Error 404 said:
Hmmm, okay.. Try This :

1) Find This Line In Your Header :

2) below add :

2.5) Change IMAGENAME.png to something you want.
3) Upload a picture to the yourstyle/misc/ folder.
4) If you got questions, ask ;)

Thanks mate but when i do this it pushs the center one to the left.
 

Curtis129

New Member
backup your header template to a notepad file
then replace whole template with this
HTML:
<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center" style="background-image:url($stylevar[imgdir_misc]/logo_bg.png)">
<tr>
<td align="center" valign="top"><img src="$stylevar[imgdir_misc]/logo.png" alt="" /></td>
<td align="$stylevar[align=right]" id="header_right_cell"><img sr="$stylevar[imgdir_misc]/yourimage.gif" alt="" />
</td>
</tr>
</table>
<!-- /logo -->
<!-- content table -->
$spacer_open

$_phpinclude_output
 

Mr-Ice-Man

New Member
Curtis129 said:
backup your header template to a notepad file
then replace whole template with this
HTML:
<!-- logo -->
<a name="top"></a>
<table border="0" width="$stylevar[outertablewidth]" cellpadding="0" cellspacing="0" align="center" style="background-image:url($stylevar[imgdir_misc]/logo_bg.png)">
<tr>
<td align="center" valign="top"><img src="$stylevar[imgdir_misc]/logo.png" alt="" /></td>
<td align="$stylevar[align=right]" id="header_right_cell"><img sr="$stylevar[imgdir_misc]/yourimage.gif" alt="" />
</td>
</tr>
</table>
<!-- /logo -->
<!-- content table -->
$spacer_open

$_phpinclude_output

No when i put that in and edit the image name in the code you just gave me no image shows on my forum at all, but the main logo is there in the center still.
 

bluescorpion

New Member
To get the display you initially provided, you need to do something like this:

<td style="padding: 0px 0px 0px 0px;"><img src="$stylevar[imgdir_misc]/newimage.png" alt="" /><td style="padding: 0px 0px 0px 0px;" valign="top"><img src="$stylevar[imgdir_misc]/logo.png" alt="" /></td>


use the padding to move the images where they need to be but the order should be correct with this example.
 

Curtis129

New Member
mate, with my template, you need to make sure the image is in your style/misc/ directory, and then you put your filename where i specified.
 

mmmxiv

New Member
I have this code and I always thought it allowed for ad's placed via the Ad Location templates...

PHP:
<if condition="$ad_location['ad_header_logo']">$ad_location[ad_header_logo]<else />&nbsp;</if>
	</td>
</tr>
</table>
<!-- /logo -->

<!-- content table -->
$spacer_open

$_phpinclude_output

$ad_location[ad_header_end]

The "$ad_location[ad_header_end]" References to the Ad Locations Template group in the style manager....

Just add that code onto your header template (If it isn't there already) and edit your ad locations templates.

Add your <img src"myimage"> code there... should work...

mc7wnm.png
 
Top