Quote:
Originally Posted by iKwak
Just what I needed! Thanks mate. Clicked Install.
edit: On the source code (inside the textbox), how can we change the HTML format?
I want to change the above code to:
Code:
<a href="http://www.calpolyonline.com/forums/">
<img src="http://www.calpolyonline.com/forums/images/banners/calpolyonlinemain.gif" alt="ALT"></a>
Notice the change? I have removed the <!-- --> brackets, removed capitalization, added a backward slash on the URL and added a "ALT" code. How would you be able to do that? Thank you for the support. Just the hack I was waiting for. :up:
|
Hi iKwak,
you talk about this section in the php file:
PHP Code:
<code style=\"white-space:nowrap\">
<!-- $vboptions[bburl] Advertising Start --><BR>
<A HREF=\"$vboptions[bburl]\"><BR><IMG SRC=\"$vboptions[bburl]/images/banners/".$file."\"></A><BR>
<!-- $vboptions[bburl] Advertising End -->
</code></pre>
Change it for your particular request to:
PHP Code:
<code style=\"white-space:nowrap\">
<A HREF=\"$vboptions[bburl]/\"><BR><IMG SRC=\"$vboptions[bburl]/images/banners/".$file."\" alt=\"ALT\"></A><BR>
</code></pre>
Cheers,