about what at bottom on main page

  Post new topicReply to topicPrintable Version
<< View previous topic View next topic >>
Share: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
#1   about what at bottom on main page
bigbillmrbill
CZ Newbie
bigbillmrbill has been a member for over 20 year's 20 Year Member
usa.gif illinois.gif
Occupation: My Site
Age: 58
Gender: Male
Fav. Sports Team: chicago Bears
Website:
Status: Offline
Joined: Mar 19, 2004
0.00 posts per day
Posts: 13
Points: 2,064
 Yahoo Messenger MSN Messenger 
at bottom of page it scolling the new downloads and new web links what is that call and where can i download it at?




_________________


Life Is Short Live It To The Fullest!!
Back to top Reply with quote
#2   re: about what at bottom on main page
Kelly_Hero
PayPal Donation
CZ Revered Member
 Codezwiz Site Donator
Kelly_Hero has been a member for over 20 year's 20 Year Member
usa.gif southcarolina.gif
Occupation: Web Developer
Age: 59
Gender: Female
Website:
Status: Offline
Joined: Aug 20, 2003
0.50 posts per day
Posts: 3765
Points: 351,412
   
This should help you:
[ Register or login to view links on this board. ]



Back to top Reply with quote
#3   re: about what at bottom on main page
bigbillmrbill
CZ Newbie
bigbillmrbill has been a member for over 20 year's 20 Year Member
usa.gif illinois.gif
Occupation: My Site
Age: 58
Gender: Male
Fav. Sports Team: chicago Bears
Website:
Status: Offline
Joined: Mar 19, 2004
0.00 posts per day
Posts: 13
Points: 2,064
 Yahoo Messenger MSN Messenger 
i try adding it and im getting error on page here if the file below of what you ask me to work on

<?php

/************************************************************************/
/* PHP-NUKE: BigBill theme for nuke 6.0 & up */
/* ============================================ */
/* Copyright (c) 2003 by Jaded-Designs.com */
/* [ Register or login to view links on this board. ] */
/* Made for PHP-NUKE 6.0+: Advanced Content Management System */
/* ============================================ */
/* Copyright (c) 2003 by Francisco Burzi */
/* [ Register or login to view links on this board. ] */
/************************************************************************/
// BigBill Private Release theme
// Original Author of file: Jaded-Designs - [ Register or login to view links on this board. ]
// Purpose of file: Public Release phpnuke 6.0 and up Theme
// Copyright © 2003 by Jaded-Designs All Rights Reserved
// ----------------------------------------------------------------------
// THEME MODIFICATION
// Users may alter or modify this theme at their own risk,
// but only for their own use. They may also hire Jaded-Designs to modify
// their own copy of the theme.
//
// Although users may modify the code for their use,
// modified code may not be resold or distributed,
// without express written permission from Jaded-Designs.
//
// DISPLAY OF COPYRIGHT NOTICES REQUIRED
// All copyright notices used within the scripts that the scripts generate,
// MUST remain intact. Furthermore, these notices must remain visible.
//
// SUPPORT
// Jaded-Designs provide free support, BUT not mod on the theme,
// (includes consulting, troubleshooting and fixing problems).
//
// Jaded-Designs is not liable for any products or services offered by
// means of the theme.
// The user must assume the entire risk of using the program.
//
// Jaded-Designs
// For commercial themes, exclusive themes, visit my theme shop [ Register or login to view links on this board. ]
// For more free themes, visit my sit at [ Register or login to view links on this board. ]
// [ Register or login to view links on this board. ]
// [ Register or login to view links on this board. ]
// ----------------------------------------------------------------------
/************************************************************/

$bgcolor1 = "#39426B";
$bgcolor2 = "#0B133C";
$bgcolor3 = "#ffffff";
$bgcolor4 = "#ffffff";
$textcolor1 = "#000000";
$textcolor2 = "#000000";

include("themes/BigBill/tables.php");
include("themes/BigBill/my_header.php");

/************************************************************/
/* Function themeheader() */
/* */
/* Control the header for your site. You need to define the */
/* BODY tag and in some part of the code call the blocks */
/* function for left side with: blocks(left); */
/************************************************************/

function themeheader() {
global $user, $banners, $sitename, $slogan, $cookie, $prefix, $name, $dbi;
cookiedecode($user);
$username = $cookie[1];
if ($username == "") {
$username = "Anonymous";
}

echo "<body background=themes/BigBill/images/bg36.jpg leftmargin=\"40\" text=\"#000000\" link=\"#363636\" vlink=\"#363636\" alink=\"#d5ae83\">";
if ($banners == 1) {
include("banners.php");
}
$topics_list = "<select name=\"new_topic\" onChange='submit()'>\n";
$topics_list .= "<option value=\"\">All Topics</option>\n";
$toplist = sql_query("select topicid, topictext from ".$prefix."_topics order by topictext", $dbi);
while(list($topicid, $topics) = sql_fetch_row($toplist, $dbi)) {
if ($topicid==$topic) { $sel = "selected "; }
$topics_list .= "<option $sel value=\"$topicid\">$topics</option>\n";
$sel = "";
}
if ($username == "Anonymous") {
$theuser = "&nbsp;&nbsp;<a href=\"modules.php?name=Your_Account&op=new_user\">Create an account";
} else {
$theuser = "&nbsp;&nbsp;Welcome $username!";
}
$tmpl_file = "themes/BigBill/header.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
if ($name=="Forums") {}
else blocks(left);
$tmpl_file = "themes/BigBill/left_center.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;

}

/************************************************************/
/* Function themefooter() */
/* */
/* Control the footer for your site. You don't need to */
/* close BODY and HTML tags at the end. In some part call */
/* the function for right blocks with: blocks(right); */
/* Also, $index variable need to be global and is used to */
/* determine if the page your're viewing is the Homepage or */
/* and internal one. */
/************************************************************/

function themefooter() {
global $index, $foot1, $foot2, $foot3, $foot4;
if ($index == 1) {
$tmpl_file = "themes/BigBill/center_right.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
blocks(right);
}
$footer_message = "$foot1<br>$foot2<br>$foot3<br>$foot4";
$tmpl_file = "themes/BigBill/footer.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
footmsg();
}

/************************************************************/
/* Function themeindex() */
/* */
/* This function format the stories on the Homepage */
/************************************************************/

function themeindex ($aid, $informant, $time, $title, $counter, $topic, $thetext, $notes, $morelink, $topicname, $topicimage, $topictext) {
global $anonymous, $tipath;
if ($notes != "") {
$notes = "<br><br>"._NOTE." $notes\n";
} else {
$notes = "";
}
if ("$aid" == "$informant") {
$content = "$thetext$notes\n";
} else {
if($informant != "") {
$content = "<a href=\"modules.php?name=Your_Account&amp;op=userinfo&amp;uname=$informant\">$informant</a> ";
} else {
$content = "$anonymous ";
}
$content .= ""._WRITES." \"$thetext\"$notes\n";
}
$posted = ""._POSTEDBY." ";
$posted .= get_author($aid);
$posted .= " "._ON." $time $timezone ($counter "._READS.")";
$tmpl_file = "themes/BigBill/story_home.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
echo "<body background=themes/BigBill/images/bg36.jpg leftmargin=\"40\" text=\"#000000\" link=\"#363636\" vlink=\"#363636\" alink=\"#d5ae83\">";
}

/************************************************************/
/* Function themearticle() */
/* */
/* This function format the stories on the story page, when */
/* you click on that "Read More..." link in the home */
/************************************************************/

function themearticle ($aid, $informant, $datetime, $title, $thetext, $topic, $topicname, $topicimage, $topictext) {
global $admin, $sid, $tipath;
$posted = ""._POSTEDON." $datetime "._BY." ";
$posted .= get_author($aid);
if ($notes != "") {
$notes = "<br><br>"._NOTE." $notes\n";
} else {
$notes = "";
}
if ("$aid" == "$informant") {
$content = "$thetext$notes\n";
} else {
if($informant != "") {
$content = "<a href=\"modules.php?name=Your_Account&amp;op=userinfo&amp;uname=$informant\">$informant</a> ";
} else {
$content = "$anonymous ";
}
$content .= ""._WRITES." \"$thetext\"$notes\n";
}
$tmpl_file = "themes/BigBill/story_page.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
}

/************************************************************/
/* Function themesidebox() */
/* */
/* Control look of your blocks. Just simple. */
/************************************************************/

function themesidebox($title, $content) {
$tmpl_file = "themes/BigBill/blocks.html";
$thefile = implode("", file($tmpl_file));
$thefile = addslashes($thefile);
$thefile = "\$r_file=\"".$thefile."\";";
eval($thefile);
print $r_file;
}

?>


where do i add at what you wanted me to put in to make it work




_________________


Life Is Short Live It To The Fullest!!
Back to top Reply with quote
Display posts from previous:      
Add To: Del.icio.us  Digg  Google  Spurl  Blink  Furl  Y! MyWeb  
<< View previous topic View next topic >>
Post new topicReply to topic

Jump to 
You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot vote in polls in this forum
You cannot attach files in this forum
You cannot download files in this forum