Quote:
Originally Posted by Fireproof
Okay - I fixed the images issue. Had to upload them into my custom_style/misc folder. So that's done.
But I can't get the following code to work right on the navbar, so that it picks up the /forums ...
Code:
<!-- PayPal Donations -->
<td class="vbmenu_control"><a href="billspaypal.php?">$vbphrase[billspp_donate]</a></td>
<!-- /PayPal Donations -->
|
Have you tried using
Code:
<!-- PayPal Donations -->
<td class="vbmenu_control"><a href="../forums/billspaypal.php?">$vbphrase[billspp_donate]</a></td>
<!-- /PayPal Donations -->
[/QUOTE]
or as a last resort
Code:
<!-- PayPal Donations -->
<td class="vbmenu_control"><a href="http://www.mysite.com/forums/billspaypal.php?">$vbphrase[billspp_donate]</a></td>
<!-- /PayPal Donations -->
[/QUOTE]
One of those should work in this case.