Hi folks!
I am trying to make a website, and in it I want to have a news system. I found that out a bit later after I made the website, and therefore I hadn't thought about how this system would fit into my already existing website.
This problem occured on my IK Comet website (page is in norwegian): - when you press the "Read More"-text in the middle or to the left under one of the news, you will be sent to this site, with the contents appearing on the left side. I want it to appear as the other links on the site appear, only in the middle. The script i used to display pages in a DIV-layer in the middle is :
"<!------------------- Centerpage ---------------------->
<?php
if($kat == "" && $id == "")
{
$kat = "start";
$id = "hoved";
}
$include = $kat."/".$id.".php";
if (@file_exists($include))
{
include "$include";
}
else
{
if($_GET['subaction'] != "showfull"){
include("start/404.php");
}
}
?>
<!------------------- Centerpage end ---------------------->"
- Anyone know how to make this link go only to this DIV-layer