kayasgranny wrote:
QUOTE:
I would like to add an extra table to my home page ...just can't figure out what to do or on what page to add the extra text...I do have a link to a page...but experience shows that very few people bother to follow the links.
If you want to add content to the main homepage of your dew-new phplinks site, you can apply the changes to the "directory" file.
You have a few places within the main directory homepage...(1)after the header/top navigation bar and before the main link categories or (2)after the main link categories and before the bottom navigation bar.
(1)if you want to add "your link text" after the header/top navigation bar and before the main link categories look for this code in the "directory" file and add "your link text" in the indicated place:
| Code: |
<?
include("themes/$theme/header.php");
include("themes/$theme/navbar.top.php");
?>
</td>
</tr>
ADD YOUR LINK TEXT HTML HERE
<tr>
<td>
<?
if ($showbanners == "1"){
include("include/banners.php");
}
?>
|
(2)If you want to add "your link text" after the main link categories and before the bottom navigation bar, look for this code in the "directory" file and add "your link text" in the indicated place:
| Code: |
ADD YOUR LINK TEXT HTML HERE
include("themes/$theme/navbar.bottom.php");
|
Hopefully this helps....be warned however, make a copy/backup of your original "directory" file before you apply changes and remember these are instructions to add text to the main links site homepage.