Warning

 

Close
Confirm Action

Are you sure you wish to do this?

Cancel Confirm
AR15.COM
9/10/2011 10:11:08 PM EDT
I want to change the image on the header of my website and have no idea understanding the code!  Anyone ?  

Instead of it reading Yabb 2.3.1 etc at the top,  I would like it to be my call sign!  

<table width="100%" cellpadding="0" cellspacing="0" border="0" class="menutop">
<tr>
<td class="small" align="left" valign="middle" width="2%" height="23"> </td>
<td class="small" align="left" valign="middle" width="48%" height="23"><span class="ie6alpha">{yabb time}</span></td>
<td class="small" align="right" valign="middle" width="48%" height="23">{yabb langChooser}</td>
<td class="small" align="left" valign="middle" width="2%" height="23"> </td>
</tr>
</table>
<table class="windowbg2" width="100%" cellpadding="4" cellspacing="0" border="0">
<tr>
<td align="left" valign="top" width="1%" height="40"> </td>
<td align="left" valign="middle" height="40">{yabb uname}<br />{yabb im}{yabb admin_alert}</td>
<td align="center" valign="middle" width="460" height="100" rowspan="2"><a href="http://www.yabbforum.com"><img src="{yabb images}/yabblogo.png" alt="W8OSP.com" title="Yet another Bulletin Board" border="0" /></a></td>
</tr>
<tr>
<td align="left" valign="top" width="1%" height="60"> </td>
<td class="small" align="left" valign="top" height="60">{yabb news}</td>
</tr>



That is the code from the headers!  Here is my site!
http://w8osp.com/forum/YaBB.pl

Can anyone help?
9/10/2011 10:19:18 PM EDT
[#1]
Change src="http://w8osp.com/forum/Templates/Forum/default/yabblogo.png" ?
9/10/2011 10:41:11 PM EDT
[#2]
Place the logo file you want in ./forum/Templates/Forum/default/ then change src="{yabb images}/yabblogo.png" to src="{yabb images}/mylogo.png" where mylogo.png is the actual name of your logo image file.

9/10/2011 10:52:35 PM EDT
[#3]
Well I do not have a logo,  I just want it in text if I can!

I gather this is the code for the image!  

"<a href="http://www.yabbforum.com"><img src="{yabb images}/yabblogo.png" alt="W8OSP.com" title="Yet another Bulletin Board" border="0" />"

Is there a way to just change it to a blue bold text of my call sign ?
9/10/2011 10:59:09 PM EDT
[#4]
Replace:



<img src="{yabb images}/yabblogo.png" alt="W8OSP.com" title="Yet another Bulletin Board" border="0" />



With something like:



<h1>W8OSP.com</h1>



Might have to play with the CSS styling to get it to look the way you want. Maybe:



<h1 style="color: #00F;">W8OSP.com</h1>


9/10/2011 11:07:30 PM EDT
[#5]
That will work!  Thanks!