Thread: theme/index.php
View Single Post
  #1 (permalink)  
Old 05-21-2003, 03:57 PM
msimonds msimonds is offline
Junior Member
 
Join Date: Dec 2002
Posts: 44
theme/index.php
running all aspects of the home page from http://www.pixdesign.ch/en


I was wondering if this is possible. here is the code:

Code:
function themefooter() {
    global $index, $bgcolor22, $bgcolor10, $sd;
    echo "
";
    if ($index == 1) {
	echo "</td><td><img src=\"themes/skinner/images/pixel.gif\" width=\"10\" height=\"1\" border=\"0\" alt=\"\"></td><td valign=\"top\" width=\"138\" bgcolor=\"$bgcolor22\">\n";
	$sd="right";
	blocks(right);
	//echo "<img src=\"themes/skinner/images/backend.gif\" width=\"100%\" height=\"20\">";
    }
 else {
	echo "</td><td colspan=\"2\"><img src=\"themes/skinner/images/pixel.gif\" width=\"10\" height=\"1\" border=\"0\" alt=\"\">";
    }
    echo "

</td></tr></table>\n"
	."<table border=\"0\" cellpadding=\"0\" cellspacing=\"0\" style=\"border-collapse: collapse\" width=\"100%\" background=\"themes/skinner/images/footer.gif\" width=\"800\" height=\"70\"><tr><td width=\"100%\" valign=\"top\">"
	."<center>
";
    echo "<font color=\"#FFFFFF\"><span style=\"font-size: 6pt\">Theme design ©2003 by </span><a href=\"http://www.pixdesign.ch/\"><font color=\"#FFFFFF\"><span style=\"font-size: 6pt\">pixdesign.ch</span></a>!";
	footmsg();
	

    echo "</center></td></tr></table></td></tr></table></td></tr></table></td></tr></table>";
}

How would I add this, which is from another theme footer.html file from another theme:

Code:
<td><div align="center"><a href="http://www.freeimagebrowser.com/">
            [img]http://www.freeimagebrowser.com/images/visualizer_88x31.gif[/img]</a>
           </div>
           
<center><iframe src="http://leader.linkexchange.com/X1696924/showiframe?" width=468 height=60 marginwidth=0 marginheight=0 hspace=0 vspace=0 frameborder=0 scrolling=no>
[img]http://leader.linkexchange.com/X1696924/showle?[/img]</iframe>
[img]http://leader.linkexchange.com/X1696924/showlogo?[/img]
</center>

</td>
I want to add this so it shows below the footer.gif and the $footer_message
at the bottom of the page at http://www.sportsrant.com
Reply With Quote