Posted: 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? |
|
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 ? |
|
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> |