rooothy
Aug 14 2008, 10:06 AM
Hiya, i was wondering if anyone could tell me how i would change the link on a button.
I am trying to change it so that when you click on the links button it will take you to the exchange page.
I do know a little HTML but can't find out where the link is to change it.
Any help please....
Jamie
Aug 14 2008, 10:28 AM
Hi Roothy,
If the link you are trying to change is the one on the home page of your site, you need to login to the site area through DIY-Dating, then go to Advanced > Edit Logged Out. You can then search for links.php in the code, it should look like <a href="links.php" title="Links">Links</a>
You then need to change the destination to want to link to ( <a href="DESTINATION" title="Links">Links</a> )
The text you want the link to display when you hover your mouse over ( <a href="DESTINATION" title="MOUSE OVER">Links</a> )
Finally the text you want the link to display on the page ( <a href="DESTINATION" title="MOUSE OVER">LINK TEXT</a> )
So if you wanted to change the existing button on there from links to your exchange program it would look like this below
from this
<a href="links.php" title="Links">Links</a>
to this
<a href="exchange" title="Exchange">Exchange</a>
Hope that clears it up for you.
Jamie
rooothy
Aug 14 2008, 11:03 AM
YES!!!
Thanks for your help.
I have managed to do it now.