<?
if (!defined("IN_FUSION")) { header("Location: ../../index.php"); exit; }
require_once INCLUDES."theme_functions_include.php";
// theme settings
$body_text = "#000000";
$body_bg = "#ffffff";
$theme_width = "100%";
$theme_width_l = "175";
$theme_width_r = "175";
function render_header($header_content) {
global $theme_width;
/* this is the very very top of the whole page */
echo "<table align='center' cellspacing='0' cellpadding='0' width='$theme_width'>
<tr>
<td class='border-left'> </td>
<td>";
/* this is the links & date/time area */
echo "<table cellpadding='0' cellspacing='0' width='100%'>\n<tr>
<td class='white-header'><strong>".showsublinks(" | ", "white")."</strong></td>
<td align='right' class='white-header'>".showsubdate()."</td>
</tr>
</table>\n";
/* this is where the banner goes */
echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='full-header'>
<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td><a href='".BASEDIR."index.php'>$header_content</a></td>
</tr>
</table>
</td>
</tr>
</table>\n";
/* finally, this starts the page */
echo "<table cellpadding='0' cellspacing='0' width='100%'>\n<tr>\n";
}
function render_footer($license=false) {
global $theme_width,$settings;
echo "</tr>\n</table>\n
<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='footer-top' colspan='3'> </td>
</tr>
<tr>
<td align='center' colspan='3' class='footer'>";
echo stripslashes($settings['footer'])."</td></tr><tr>";
if(!$license){
/* this is the php-fusion copyright */
echo "<td align='left' class='footer' width='30%'>\n
Powered by <a href='http://www.php-fusion.co.uk' class='white'>
PHP-Fusion</a> v".$settings['version']."</td>";
}
/* this is where YOUR theme copyright and the total unique views are */
echo "<td align='center' class='footer' width='40%'>
FuturBlu theme by <a href='http://www.php-invent.com' target='_blank' class='white'>PHP-Invent Themes</a>
</td>
<td align='right' class='footer' width='30%'>".showcounter()."</td></tr>
</table>
</td>
<td class='border-right'> </td>
</tr>
</table>\n";
}
function render_news($subject, $news, $info) {
/* this is what the news post will be like */
echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='scapmain-left' width='38'> </td>
<td class='scapmain'>$subject</td>
<td class='scapmain-right' width='38'> </td>
</tr>
<tr>
<td class='side-body' colspan='3'>\n
$news<br /><br /><hr><div align='center'>\n";
echo openform("N",$info['news_id']).newsposter($info,"<br>").newsopts($info,"·").closeform("N",$info['news_id']);
echo "</div></td>
</tr>
</table>\n";
}
function render_article($subject, $article, $info) {
/* this is what the article will look like */
echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='scapmain-left' width='38'> </td>
<td class='scapmain'>$subject</td>
<td class='scapmain-right' width='38'> </td>
</tr>
<tr>
<td class='side-body' colspan='3'>\n
".($info['article_breaks'] == "y" ? nl2br($article) : $article)."
</td>
</tr>
<tr>
<td align='center' class='news-footer'>\n";
echo openform("A",$info['article_id']).articleposter($info,"<br>").articleopts($info,"·").closeform("A",$info['article_id']);
echo "</td>
</tr>
</table>\n";
}
function opentable($title) {
echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='scapmain-left' width='38'> </td>
<td class='scapmain'>$title</td>
<td class='scapmain-right' width='38'> </td>
</tr>
<tr>
<td class='side-body' colspan='3'>\n";
}
function closetable() {
echo "</td>
</tr>
</table>\n";
}
function openside($title) {
echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='scapmain-left' width='38'> </td>
<td class='scapmain'>$title</td>
<td class='scapmain-right' width='38'> </td>
</tr>
<tr>
<td class='side-body' colspan='3'>\n";
}
function closeside() {
echo "</td>
</tr>
</table>\n";
tablebreak();
}
function opensidex($title,$state="on") {
$boxname = str_replace(" ", "", $title);
echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='scapmain-left' width='38'> </td>
<td class='scapmain'>$title</td>
<td class='scapmain-right' width='38'>".panelbutton($state,$boxname)."</td>
</tr>
<tr>
<td colspan='3' class='side-body'>
<div id='box_$boxname'".($state=="off"?" style='display:none'":"").">\n";
}
function closesidex() {
echo "</div>
</td>
</tr>
</table>\n";
tablebreak();
}
function tablebreak() {
echo "<table cellpadding='0' cellspacing='0' width='100%'>\n<tr>\n<td height='5'></td>\n</tr>\n</table>\n";
}
?>
Kliknij i zaczekaj na załadowanie kodu ...
styles.css:
/* this is the color & style of the links that aren't on the sides or at the top */
a {
color : #000;
text-decoration : none;
}
a:hover {
color : #000;
text-decoration : underline;
}
/* this is the color & style of the links that are on the side */
a.side {
color : #000;
text-decoration : none;
}
a:hover.side {
color : #000;
text-decoration : underline;
}
/* this is the color & style of the links that are at the top */
a.white {
color : #fff;
text-decoration : none;
}
a:hover.white {
color : #fff;
text-decoration : underline;
}
/* this is the font & size of the font of the whole page */
body {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 11px;
background-color: #DAE2E3;
}
form {
margin : 0px;
}
/* this is the horizontal ruler */
hr {
height : 1px;
border : 1px solid #eee;
}
hr.side-hr {
height : 1px;
border : 1px solid #eee;
}
td {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 11px;
}
.tbl-border {
color : #555;
background-color : #e1e1e1;
}
.tbl {
font-size : 11px;
color : #000;
background-color : #fff;
padding : 4px;
}
.tbl1 {
font-size : 11px;
color : #000;
background-color : #fff;
padding : 4px;
}
.tbl2 {
font-size : 11px;
color : #000;
background-color : #fff;
padding : 4px;
}
pre {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 11px;
}
.alt {
color : #005599;
}
.border-left {
background-image: url('images/border-left.gif');
padding: 0px;
width: 16px;
}
.border-right {
background-image: url('images/border-right.gif');
padding: 0px;
width: 16px;
}
/* this is where the links & date go */
.white-header {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #fff;
border-bottom : 1px solid #ccc;
padding : 2px 5px 11px 5px;
background-image: url('images/t1.gif');
height: 30px;
}
/* this is where the banner is */
.full-header {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #000;
background-image: url('images/t2.gif');
border-bottom : 1px solid #ccc;
padding : 5px;
height: 83px;
}
/* this is where the footer, unique visits, fusion copyright, and theme copyright go */
.footer {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #fff;
padding : 5px;
background-image: url('images/footer-bg.png');
}
/* this is the button styling */
.button {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #000;
background-color: #fff;
height : 20px;
border : 1px solid #ccc;
margin-top : 2px;
}
/* this is the textbox styling */
.textbox {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #000;
background-color : #fff;
border : 1px solid #ccc;
}
/* this is the body of the center panels */
.main-body {
font-size : 11px;
color : #000;
background-color : #fff;
padding : 4px 4px 5px 4px;
}
/* this is the body of the side panels */
.side-body {
font-size : 10px;
color : #000;
background-color : #fff;
padding : 4px;
border: 1px solid #ccc;
}
/* this is the background of the center area */
.main-bg {
color : #000;
background-color : #fff;
padding : 5px;
}
.outer-border {
border : 1px solid #ccc;
}
.border {
border : 1px solid #ccc;
}
/* this is the border between the left side and the center */
.side-border-left {
background-color : #fff;
padding : 5px;
}
/* this is the border between the right side and the center */
.side-border-right {
background-color : #fff;
padding : 5px;
}
.footer-top {
background-image: url('images/t8.gif');
height: 18px;
}
/* this is the footer of a news post */
.news-footer {
font-size : 10px;
color : #000;
background-color : #fff;
border-top : 1px solid #ccc;
padding : 3px 4px 4px 4px;
}
.poll {
height : 12px;
border : 1px solid #000;
}
/* this is the top of the center panels */
.capmain {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 11px;
font-weight : bold;
color : #000;
background-color: #fff;
border-bottom : 1px solid #ccc;
padding : 2px 4px 4px 4px;
}
/* this is the top of the side panels */
.scapmain {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #fff;
background-image: url('images/panel-center.png');
padding : 2px;
height: 25px;
text-align: center;
/*font-weight : bold;*/
}
.scapmain-left {
padding : 0px;
background-image: url('images/panel-left.png');
height: 25px;
width: 38px;
}
.scapmain-right {
padding : 0px;
background-image: url('images/panel-right.png');
height: 25px;
width: 38px;
}
/* this is the background of the forum categories in forum/index.php */
.forum-caption {
font-size : 11px;
font-weight : bold;
color : #000;
background-color: #fff;
padding : 2px 4px 4px 4px;
}
/* this is what a quote in the forums look like */
.quote {
font-size : 11px;
color : #555;
background-color : #f8f8f8;
padding : 4px;
margin : 0px 20px 0px 20px;
border : 1px solid #bbb;
}
.comment-name {
font-weight : bold;
color : #005599;
}
/* the author of the shoutbox post */
.shoutboxname {
font-weight : bold;
color : #005599;
background-color : #fff;
}
/* this is the actual shoutbox text */
.shoutbox {
color : #777;
background-color : #fff;
}
/* this is the date of the shoutbox post */
.shoutboxdate {
font-size : 10px;
color : #888;
background-color : #fff;
}
/* this is what the smaller text looks like */
.small {
font-size : 10px;
font-weight : normal;
}
/* this is what the smallest text looks like */
.small2 {
font-size : 10px;
font-weight : normal;
color : #555;
}
/* this is what the small text on the side panels look like */
.side-small {
font-size : 10px;
font-weight : normal;
color : #555;
background-color : #fff;
}
/* this is what a nav panel section looks like */
.side-label {
color : #000;
background-color : #fff;
padding : 2px 2px 3px 2px;
}
/* this is for the photogallery */
.gallery {
padding : 16px 0px 8px 0px;
}
.gallery img {
border : 1px solid #ccc;
}
img.activegallery {
border : 1px solid green;
}
Kliknij i zaczekaj na załadowanie kodu ...
Proponuję zacząć używać odpowiednich bbcode - Milka
Edytowane przez Milka dnia 15.03.2009 17:13:49
|