Page 1 of 1
Need links.php to look more like website
Posted: Mon May 01, 2006 1:29 pm
by guzie
Script URL:
http://www.guzmansgreenhouse.com/linkman/links.php
Version of script: latest downloaded on 4/30/06
Version of PHP: 1.03
Hosting company: godaddy.com
Have you searched THIS FORUM for your problem: Yes
(if not please do before posting)
If so, what terms did you try:
Write your message below: Need links.php to look more like website, website code, links.php website
The script works great downloaded it yesterday. However I would like to know where and how I can change the links.php file to look more like my website.
Right now all I can do is change the header and footer. Just point me in the right direction.
Thanks for your help
Paul Guzman

Posted: Mon May 01, 2006 2:21 pm
by Klemen
You can make LinkMan look completely like the rest of your website just by using the header and footer files. Just paste all the code that you want to display BEFORE links to the HEADER file and all HTML code that should be displayed AFTER links in FOOTER file.
The links.php file itself prints only very little code (paragraph with links separated by a <br> tag).
Regards
info
Posted: Sun Jun 25, 2006 9:02 am
by ravetildon1
I am wondering the same thing. How do you get the side menus to display.
Here is my site:
http://www.pleasanton-daycare-childcare.com/
And here is where I put linkman:
http://www.pleasanton-daycare-childcare ... /links.php
I can't seem to figure out where to put all the rest of my code so it shows up properly...
Posted: Mon Aug 28, 2006 10:21 am
by pea
Just because i'm bored:
Get your template with the tables etc in.
Example:
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td></td>
</tr>
</table>
</body>
</html>
Go to the table and, or cell and copy everything above the opening tag and paste it in 'header.php'.
Example:
Code: Select all
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1" />
<title>Untitled Document</title>
</head>
<body>
<table width="100%" border="0" cellspacing="0" cellpadding="0">
<tr>
<td>
and the other half in the footer.
Then make new files called linksheader.txt and linksfooter.txt and upload them. Open links.php and change the file from header.txt to linksheader.txt in this string 'require_once('header.txt');' and the same for linksfooter.txt and 'require_once('footer.txt');'.
Paste links.php directly into your template.
That doesn't give me any errors.