[Req] How to add flash or an image beside logo?

kushubham9

New Member
Hea all,
I am facing a great difficulty. I want to add a flash sort of a thing or an image just behind my logo.

I am at presently using 515 theme by vbskinworks..

I this this image will explain you in a much better way:
x24apx.png


If u r still confused visit my forum and then u ll surely understand..
Code:
www.desirockerz.info

Its very urgent dear. Please help.
 

Error 404

New Member
Easy...

1) Go To Style Manager -> YOURSTYLE -> Edit Templates -> header
2) Search for line :
PHP:
<if condition="$ad_location['ad_header_logo']">$ad_location[ad_header_logo]<else />&nbsp;</if>
3) Change &nbsp; into a link or whatever you want ;)
 

bluescorpion

New Member
Wassup, sorry I was typing while you posted. The ad location might work but here is the code change if it doesn't...

You need to insert another <td></td>

HTML:
<table border="0" width="100%" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="left">
<a href="index.php?"><img src="images/545/misc/logo.gif" border="0" alt="yoursite" /></a></td>

<!-- ADD THE FOLLOWING CODE -->

<td>  INSERT YOUR FLASH OBJECT HERE    </td>


<td width="100%" style="background: url(images/545/misc/menu_background.gif) top right no-repeat;" align="right">

&nbsp;    </td>
</tr>
</table>


You will have to tweak it to make it align correctly between the two tags, maybe using a

HTML:
 <td style = "padding-right: ##px; padding-left: ##px;">
 

kushubham9

New Member
Wassap said:
Easy...

1) Go To Style Manager -> YOURSTYLE -> Edit Templates -> header
2) Search for line :
PHP:
<if condition="$ad_location['ad_header_logo']">$ad_location[ad_header_logo]<else />&nbsp;</if>
3) Change &nbsp; into a link or whatever you want ;)

But there is no such option in "headers".. A search gives no result..
 

kushubham9

New Member
bluescorpion said:
Wassup, sorry I was typing while you posted. The ad location might work but here is the code change if it doesn't...

You need to insert another <td></td>

HTML:
<table border="0" width="100%" cellpadding="0" cellspacing="0" align="center">
<tr>
<td align="left">
<a href="index.php?"><img src="images/545/misc/logo.gif" border="0" alt="yoursite" /></a></td>

<!-- ADD THE FOLLOWING CODE -->

<td>  INSERT YOUR FLASH OBJECT HERE    </td>


<td width="100%" style="background: url(images/545/misc/menu_background.gif) top right no-repeat;" align="right">

&nbsp;    </td>
</tr>
</table>


You will have to tweak it to make it align correctly between the two tags, maybe using a

HTML:
 <td style = "padding-right: ##px; padding-left: ##px;">
where should i exactly add this?? Can you make that clear?
 

bluescorpion

New Member
This example is from the output of your header template which generated the original of this modified code (I pulled it from your site). Wassup already pointed you correctly to the header template. Maybe you need to take some lessons in basic HTML because that is all that is being done here, a VERY SIMPLE insert of a simple HTML statement...
 
Top