Temos pavadinimas: WordPress, Shopify ir PHPFusion programuotojų bendruomenė :: kaip per tema padaryti?

Parašė Mantas_· 2008 Lie. 21 20:07:02
#1

kaip per theme.php faila padaryti kad apacioi rodytu ta paveiksliuka.nu cellpic. va failas
<?php
if (!defined("IN_FUSION")) { header("Location: ../../index.php"); exit; }
require_once INCLUDES."theme_functions_include.php";

// theme settings
$body_text = "#555555";
$body_bg = "#ffffff";
$theme_width = "940";
$theme_width_l = "175";
$theme_width_r = "175";

function render_header($header_content) {

global $theme_width,$settings,$locale,$userdata,$aidlink;

echo "<table align=center class='mainsite-border' align='left' width='910' cellspacing='0' cellpadding='0'>
<tr><td class='outer-border'>
<table align='center' width='100%' cellspacing='0' cellpadding='0'>
<tr><td class='inner-border'>
<table align='center' width='100%' cellspacing='0' cellpadding='0'>
<tr align=left><td>";
include_once "header.php";
echo "</td></tr>
</table>\n";
echo "<table width='100%' cellspacing='0' cellpadding='0'>\n<tr>\n";
}

function render_footer($license=false) {
global $theme_width,$locale,$settings;

   echo "</tr>\n</table>\n";
   echo "<table cellSpacing='0' cellPadding='2' width='100%' border='0' background='".THEME."images/footer.gif' style='padding-left: 50px;'><tr><td height='20' class='white' align='center'><b>Dizainas pagal <a href='http://www.dgl.xz.lt'>Deagle</a></b></td></tr></table>";
}

function render_news($subject, $news, $info) {

echo "<table cellpadding='0' cellspacing='0' width='100%' class='border'>
<tr>
<td class='capmain'>$subject</td>
</tr>
<tr>
<td class='main-body'>$news</td>
</tr>
<tr>
<td align='center' class='news-footer'>\n";
echo openform("N",$info['news_id']).newsposter($info,"<br>").newsopts($info,"&middot;").closeform("N",$info['news_id']);
echo "</td>
</tr>
</table>\n";

}

function render_article($subject, $article, $info) {
   
echo "<table width='100%' cellpadding='0' cellspacing='0' class='border'>
<tr>
<td class='capmain'>$subject</td>
</tr>
<tr>
<td class='main-body'>
".($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,"&middot;").closeform("A",$info['article_id']);
echo "</td>
</tr>
</table>\n";

}

function opentable($title) {

echo "<table cellpadding='0' cellspacing='0' width='100%' class='border'>
<tr>
<td class='capmain'>$title</td>
</tr>
<tr>
<td class='main-body'>\n";

}

function closetable() {

echo "</td>
</tr>
</table>\n";

}

function openside($title) {
   
echo "<table cellpadding='0' cellspacing='0' width='100%' class='border'>
<tr>
<td class='scapmain'>$title</td>
</tr>
<tr>
<td class='side-body'>\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%' class='border'>
<tr>
<td class='scapmain'>$title</td>
<td class='scapmain' align='right'>".panelbutton($state,$boxname)."</td>
</tr>
<tr>
<td colspan='2' 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";

}
?>



Parašė RuP3r· 2008 Lie. 21 20:07:21
#2

reik styles.css

Parašė Mantas_· 2008 Lie. 21 20:07:06
#3

aaa nu va jis
a {
   color : #005599;
   text-decoration : none;
}

a:hover {
   color : #005599;
   text-decoration : underline;
}

a.side {
   color : #005599;
   text-decoration : none;
}

a:hover.side {
   color : #005599;
   text-decoration : underline;
}

a.white {
   color : #ddd;
   text-decoration : none;
}

a:hover.white {
   color : #ddd;
   text-decoration : underline;
}

body {
   font-family : Verdana, Arial, Helvetica, sans-serif;
   font-size : 11px;
}

form {
   margin : 0px;
}

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;
}

pre {
   font-family : Verdana, Arial, Helvetica, sans-serif;
   font-size : 11px;
}

.alt {
   color : #005599;
}
 
.white-header {
   font-family : Verdana, Arial, Helvetica, sans-serif;
   font-size : 10px;
   color : #555;
   background-color : #fff;
   border-top : 1px solid #ccc;
   border-bottom : 1px solid #e1e1e1;
   padding : 5px;
}

.full-header {
   font-family : Verdana, Arial, Helvetica, sans-serif;
   font-size : 10px;
   color : #aaa;
   background-color : #006699;
   padding : 5px;
}

.footer {
   font-family : Verdana, Arial, Helvetica, sans-serif;
   font-size : 10px;
   color : #aaa;
   background-color : #006699;
   border-top : 1px solid #e1e1e1;
   padding : 5px;
}

.button {
   font-family : Verdana, Arial, Helvetica, sans-serif;
   font-size : 10px;
   color : #555;
   background-color : #f1f1f1;
   height : 20px;
   border : 1px solid #ccc;
   margin-top : 2px;
}

.textbox {
   font-family : Verdana, Arial, Helvetica, sans-serif;
   font-size : 10px;
   color : #555;
   background-color : #f8f8f8;
   border : 1px solid #ccc;
}

.main-body {
   font-size : 11px;
   color : #555;
   background-color : #fff;
   padding : 4px 4px 5px 4px;
}

.side-body {
   font-size : 10px;
   color : #777;
   background-color : #fff;
   padding : 4px;
}

.main-bg {
   color : #555;
   background-color : #fff;
   padding : 5px;
}

.outer-border {
   border : 1px solid #ccc;
}

.border {
   border : 1px solid #e1e1e1;
}

.side-border-left {
   border-right : 1px solid #e1e1e1;
   padding : 5px;
}

.side-border-right {
   border-left : 1px solid #e1e1e1;
   padding : 5px;
}

.news-footer {
   font-size : 10px;
   color : #555;
   background-color : #f1f1f1;
   border-top : 1px solid #e1e1e1;
   padding : 3px 4px 4px 4px;
}

.capmain {
   font-family : Verdana, Arial, Helvetica, sans-serif;
   font-size : 11px;
   font-weight : bold;
   color : #000;
   background-color : #f1f1f1;
   background: url('images/cellpic.gif');
        border-bottom : 1px solid #e1e1e1;
   padding : 7;
}

.scapmain {
   font-family : Verdana, Arial, Helvetica, sans-serif;
   font-size : 10px;
   font-weight : bold;
   color : #000;
   background-color : #f1f1f1;
   background: url('images/cellpic1.gif');
        border-bottom : 1px solid #e1e1e1;
   padding : 7px;
}

.tbl-border {
   color : #555;
   background-color : #e1e1e1;
}

.tbl {
   font-size : 11px;
   color : #555;
   background-color : #fff;
   padding : 4px;
}

.tbl1 {
   font-size : 11px;
   color : #555;
   background-color : #fff;
   padding : 4px;
}

.tbl2 {
   font-size : 11px;
   color : #555;
   background-color : #f1f1f1;
   padding : 4px;
}

.forum-caption {
   font-size : 11px;
   font-weight : bold;
   color : #888;
   background-color : #f1f1f1;
   padding : 2px 4px 4px 4px;
}

.quote {
   font-size : 11px;
   color : #555;
   background-color : #f8f8f8;
   padding : 4px;
   margin : 0px 20px 0px 20px;
   border : 1px solid #bbb;
}

.poll {
   height : 12px;
   border : 1px solid #000;
}

.comment-name {
   font-weight : bold;
   color : #005599;
}

.shoutboxname {
   font-weight : bold;
   color : #005599;
   background-color : #fff;
}

.shoutbox {
   color : #777;
   background-color : #fff;
}

.shoutboxdate {
   font-size : 10px;
   color : #888;
   background-color : #fff;
}

.small {
   font-size : 10px;
   font-weight : normal;
}

.small2 {
   font-size : 10px;
   font-weight : normal;
   color : #555;
}

.side-small {
   font-size : 10px;
   font-weight : normal;
   color : #555;
   background-color : #fff;
}

.side-label {
   color : #555;
   background-color : #f1f1f1;
   padding : 2px 2px 3px 2px;
}



Parašė RuP3r· 2008 Lie. 21 20:07:54
#4

tai idėk cellpic.gif , cellpic1.gif į images folderį ir būs.

Parašė Mantas_· 2008 Lie. 21 20:07:30
#5

ok

Parašė Mantas_· 2008 Lie. 21 21:07:27
#6

nu prisegu visa theme

Redagavo Mantas_· 2008 Lie. 21 22:07:33

Parašė Mantas_· 2008 Lie. 21 22:07:50
#7

tai padarys kas??:(

Parašė Mantas_· 2008 Lie. 22 14:07:56
#8

a jum sunku?:(:(:(

Parašė MAnjack· 2008 Lie. 22 14:07:19
#9

dgl priskirtas į grupę flūderiai.

Parašė -· 2008 Lie. 22 14:07:42
#10

a tu dau-ans ar kas tau jugi sake susikurt 2 failus cellpic1 ir cellpic ir imesk i images folda ir
bus
arba jei nori kitu pavadinimu pasiimk sitas eulutes ir pasikeist
.capmain {
   font-family : Verdana, Arial, Helvetica, sans-serif;
   font-size : 11px;
   font-weight : bold;
   color : #000;
   background-color : #f1f1f1;
   background: url('images/cellpic.gif');
        border-bottom : 1px solid #e1e1e1;
   padding : 7;
}

.scapmain {
   font-family : Verdana, Arial, Helvetica, sans-serif;
   font-size : 10px;
   font-weight : bold;
   color : #000;
   background-color : #f1f1f1;
   background: url('images/cellpic1.gif');
        border-bottom : 1px solid #e1e1e1;
   padding : 7px;
}



Redagavo -· 2008 Lie. 22 14:07:33

Parašė Mantas_· 2008 Lie. 22 14:07:21
#11

as noriu kad ir apacioi rodytu cellpic nu kaip ir cia matai kur apacia ir melynas paweiksliukas pas mane jo nera kaip ji ten ideti?:?

Parašė -· 2008 Lie. 22 14:07:29
#12

pasiimk kita theme kur yra taip kaip tu nori ir susirask koda to cellpico apatinio ir isimesk i savo theme .