Navigacija

Vartotojų tinkle

Prisijungusių svečių: 64
Prisijungusių narių: 0
Prisijungusių narių nėra

Registruoti nariai: 25,959
Naujausias narys: Simbijanas

Naujausi straipsniai

Paskutiniai nariai

Reikalas22:36:56
Simbijanas 7 savaitės
Karinacraft 7 savaitės
Žmogus11 savaitės
Bruksnys15 savaitės
Darexs17 savaitės
Nepas18 savaitės
keistuole20 savaitės
Gizmis22 savaitės
Rytis31 savaitės
MaFetas35 savaitės
ozzWANTED37 savaitės
saulyzas39 savaitės
TOMIJUS40 savaitės
Jaunelis55 savaitės
lanis55 savaitės
And2s56 savaitės
Memento Mori61 savaitės
Quwqkibor63 savaitės
asirija67 savaitės

Informacija:

Rezoliucija: 1280 x 720
OS: Unknown
Naršyklė: Nežinoma
IP: 216.73.216.14
Naujienų: 529
Straipsnių: 235
Temų: 52,589
Postų: 522,547
Postų pask. parą: 0
Shout'ų pask. parą: 0
P.S.C. pask. parą: 0
Nuorodų kataloge: 13

Lankomumo Statistika

Peržiūrų šiandien: 22

Iš viso peržiūrų: 22948724

Prisijungti

REGISTRUOTIS
Nario vardas

Slaptažodis



Pamiršai slaptažodį?
Paprašyk naujo

Aktyvuoti save

Šaukykla

Jei norite rašyti žinutes, turite prisijungti.

Žmogus
2025 Geg. 31 10:05:18
Kas geresnio? šypsosi

Nepas
2025 Bal. 9 17:04:13
drovus

Nepas
2025 Bal. 9 17:04:08
drovus

Gizmis
2025 Kov. 15 14:03:50
OMG, smagu matyt sita puslapi veikianti

ozzWANTED
2024 Lap. 30 15:11:14
Taip, vis dar up šypsosi

Šaukyklos archyvas

Apklausa

Ar esate patenkinti lietuviško vertimo kokybe?

Taip!

Taip, bet yra ką taisyti (parašysiu komentaruose)

Ne

Norėdamas balsuoti turite prisijungti.
Archyvas
Reklama 400x60
Šoninis cellpic
Forumas | Modai, įskiepiai, panelės (PHP-FUSION) | Themes

Autorius: Narysx Peržiūrų: 1905      Spausdinti temą
2007 Spa. 10 18:10:20          1 žinutė iš 10
Spausdinti pranešimą
theme.php:

function render_news($subject, $news, $info) {
   
global $locale;
   
   echo "<table border='0' class='border2' cellspacing='1' width='100%' cellpadding='3'><tr>";
        echo "<tr><td background='".THEME."images/cellpic3.gif' height='24'><font class='block-title'>$subject</font></td></tr>";
        echo "</tr></table>";
   echo "<table width='100%' cellpadding='0' cellspacing='1' class='border'><tr>";
   echo "<td><table width='100%' cellpadding='0' cellspacing='0'><tr>";
   echo "<td class='main-body'>$news</td></tr></table>";
   echo "<table width='100%' cellpadding='0' cellspacing='0'><tr>";
   echo "<td class='news-footer'>&nbsp;";
   echo "".$locale['040']."<a href='profile.php?lookup=".$info['user_id']."'>".$info['user_name']."</a> ";
   echo "".$locale['041'].showdate("longdate", $info['news_date'])." </td>";
   echo "<td height='24' align='right' class='news-footer'>";
   echo "".($info['news_ext'] == "y" ? "<a href='news.php?readmore=".$info['news_id']."'>".$locale['042']."</a> Ā·\n" : "")."";
   if ($info['news_allow_comments'])
   echo "<a href='news.php?readmore=".$info['news_id']."'>".$info['news_comments'].$locale['043']."</a> Ā· ";
   echo "".$info['news_reads'].$locale['044']." ";
   echo "<a href='print.php?type=N&item_id=".$info['news_id']."'><img src='".THEME."images/printer.gif' title='".$locale['045']."' border='0' style='vertical-align:middle;'></a>";
   echo "</td></tr></table></td></tr></table>\n";
}

function render_article($subject, $article, $info) {
   
global $locale;
   
   echo "<table border='0' class='border2' cellspacing='1' width='100%' cellpadding='3'><tr>";
        echo "<tr><td background='".THEME."images/cellpic_sonas.gif' height='24'><font class='block-title'>$subject</font></td></tr>";
   echo "<table width='100%' cellpadding='0' cellspacing='1' class='border'><tr>";
   echo "<td><table width='100%' cellpadding='0' cellspacing='0'><tr>";
   echo "<td class='main-body'>".($info['article_breaks'] == "y" ? nl2br($article) : $article)."";
   echo "</td></tr></table>";
   echo "<table width='100%' cellpadding='0' cellspacing='0'><tr>";
   echo "<td class='news-footer'>";
   echo "".$locale['040']."<a href='profile.php?lookup=".$info['user_id']."'>".$info['user_name']."</a> ";
   echo "".$locale['041'].showdate("longdate", $info['article_date'])."</td>";
   echo "<td height='24' align='right' class='news-footer'>";
   if ($info['article_allow_comments']) echo $info['article_comments'].$locale['043']." Ā· ";
   echo "".$info['article_reads'].$locale['044']." ";
   echo "<a href='print.php?type=A&item_id=".$info['article_id']."'><img src='".THEME."images/printer.gif' title='".$locale['045']."' border='0' style='vertical-align:middle;'></a>";
   echo "</td></tr></table></td></tr></table>\n";
}

// Open table begins
function opentable($title) {

   echo "<table border='0' style='border: 1px solid #C5CAD4' cellspacing='1' width='100%' cellpadding='3'>";
   echo "<td class='panel-header'>$title</td>";
   echo "</tr>";
   echo "<tr><td class='main-body'>\n";
}

// Close table end
function closetable() {
   echo "</td></tr></table>\n";
}

function openside($title) {

   echo "<table border='0' style='border: 1px solid #C5CAD4' cellspacing='1' width='100%' cellpadding='3'><tr>";
        echo "<td class='panel-header'>$title";
        echo "<tr><td background='".THEME."images/cellpic_sonas.gif' height='24'><font class='block-title'>$subject</font></td></tr>";
        echo "</td></tr>";
   echo "<tr><td class='side-body' width='100%'>";
}

function closeside() {
   echo "</td></tr></table>";
   tablebreak();
}

function opensidex($title,$open="on") {

if($open=="on"){$box_img="off";}else{$box_img="on";}
   echo "<table border='0' style='border: 1px solid #C5CAD4' cellspacing='1' width='100%' cellpadding='3'><tr>";
        echo "<tr><td background='".THEME."images/cellpic_sonas.gif' height='24'><font class='block-title'>$subject</font></td></tr>";
   echo "<img align='left' vspace='2' onclick=\"javascript:flipBox('$title')\" name='b_$title' border='0' src='".THEME."images/panel_$box_img.gif'><font class='block-title'>$title</font>";
   echo "</td></tr>";
   echo "<tr><td class='side-body'width='100%'>";
   echo "<div id='box_$title'"; if($open=="off"){ echo "style='display:none'"; } echo ">\n";
}


function closesidex() {

   echo "</div></td></tr></table>";
   tablebreak();
}

// Table functions
function tablebreak() {
   echo "<table width='100%' cellspacing='0' cellpadding='0'><tr><td height='8'></td></tr></table>\n";
}
?>




Va kaip man rodo šonines paneles:



Kaip padaryti, kad panelės pavadinimas būtų ANT cellpico, o ne virš jo?

2007 Spa. 10 18:10:58          2 žinutė iš 10
Spausdinti pranešimą

function render_news($subject, $news, $info) {
   
global $locale;
   
   echo "<table border='0' class='border2' cellspacing='1' width='100%' cellpadding='3'><tr>";
        echo "<tr><td background='".THEME."images/cellpic3.gif' height='24'><font class='block-title'>$subject</font></td></tr>";
        echo "</tr></table>";
   echo "<table width='100%' cellpadding='0' cellspacing='1' class='border'><tr>";
   echo "<td><table width='100%' cellpadding='0' cellspacing='0'><tr>";
   echo "<td class='main-body'>$news</td></tr></table>";
   echo "<table width='100%' cellpadding='0' cellspacing='0'><tr>";
   echo "<td class='news-footer'>&nbsp;";
   echo "".$locale['040']."<a href='profile.php?lookup=".$info['user_id']."'>".$info['user_name']."</a> ";
   echo "".$locale['041'].showdate("longdate", $info['news_date'])." </td>";
   echo "<td height='24' align='right' class='news-footer'>";
   echo "".($info['news_ext'] == "y" ? "<a href='news.php?readmore=".$info['news_id']."'>".$locale['042']."</a> Ā·\n" : "")."";
   if ($info['news_allow_comments'])
   echo "<a href='news.php?readmore=".$info['news_id']."'>".$info['news_comments'].$locale['043']."</a> Ā· ";
   echo "".$info['news_reads'].$locale['044']." ";
   echo "<a href='print.php?type=N&item_id=".$info['news_id']."'><img src='".THEME."images/printer.gif' title='".$locale['045']."' border='0' style='vertical-align:middle;'></a>";
   echo "</td></tr></table></td></tr></table>\n";
}

function render_article($subject, $article, $info) {
   
global $locale;
   
   echo "<table border='0' class='border2' cellspacing='1' width='100%' cellpadding='3'><tr>";
        echo "<tr><td background='".THEME."images/cellpic_sonas.gif' height='24'><font class='block-title'>$subject</font></td></tr>";
   echo "<table width='100%' cellpadding='0' cellspacing='1' class='border'><tr>";
   echo "<td><table width='100%' cellpadding='0' cellspacing='0'><tr>";
   echo "<td class='main-body'>".($info['article_breaks'] == "y" ? nl2br($article) : $article)."";
   echo "</td></tr></table>";
   echo "<table width='100%' cellpadding='0' cellspacing='0'><tr>";
   echo "<td class='news-footer'>";
   echo "".$locale['040']."<a href='profile.php?lookup=".$info['user_id']."'>".$info['user_name']."</a> ";
   echo "".$locale['041'].showdate("longdate", $info['article_date'])."</td>";
   echo "<td height='24' align='right' class='news-footer'>";
   if ($info['article_allow_comments']) echo $info['article_comments'].$locale['043']." Ā· ";
   echo "".$info['article_reads'].$locale['044']." ";
   echo "<a href='print.php?type=A&item_id=".$info['article_id']."'><img src='".THEME."images/printer.gif' title='".$locale['045']."' border='0' style='vertical-align:middle;'></a>";
   echo "</td></tr></table></td></tr></table>\n";
}

// Open table begins
function opentable($title) {

   echo "<table border='0' style='border: 1px solid #C5CAD4' cellspacing='1' width='100%' cellpadding='3'>";
   echo "<td class='panel-header'>$title</td></tr>";
   echo "</tr>";
   echo "<tr><td class='main-body'>\n";
}

// Close table end
function closetable() {
   echo "</td></tr></table>\n";
}

function openside($title) {

   echo "<table border='0' style='border: 1px solid #C5CAD4' cellspacing='1' width='100%' cellpadding='3'><tr>";
        echo "<td class='panel-header'>$title</td>";
        echo "<tr><td background='".THEME."images/cellpic_sonas.gif' height='24'><font class='block-title'>$subject</font></td></tr>";
        echo "</td></tr>";
   echo "<tr><td class='side-body' width='100%'>";
}

function closeside() {
   echo "</td></tr></table>";
   tablebreak();
}

function opensidex($title,$open="on") {

if($open=="on"){$box_img="off";}else{$box_img="on";}
   echo "<table border='0' style='border: 1px solid #C5CAD4' cellspacing='1' width='100%' cellpadding='3'><tr>";
        echo "<tr><td background='".THEME."images/cellpic_sonas.gif' height='24'><font class='block-title'>$subject</font></td></tr>";
   echo "<img align='left' vspace='2' onclick=\"javascript:flipBox('$title')\" name='b_$title' border='0' src='".THEME."images/panel_$box_img.gif'><font class='block-title'>$title</font>";
   echo "</td></tr>";
   echo "<tr><td class='side-body'width='100%'>";
   echo "<div id='box_$title'"; if($open=="off"){ echo "style='display:none'"; } echo ">\n";
}


function closesidex() {

   echo "</div></td></tr></table>";
   tablebreak();
}

// Table functions
function tablebreak() {
   echo "<table width='100%' cellspacing='0' cellpadding='0'><tr><td height='8'></td></tr></table>\n";
}
?>






EDIT: Netinka Grafika, perkeliu i Themes.


Redagavo ramon 2007 Spa. 10 18:10:23
2007 Spa. 10 18:10:19          3 žinutė iš 10
Spausdinti pranešimą
kaip padaryti nesužinojai bet užtad už tave padarė ramon akinanti šypsen
2007 Spa. 10 18:10:33          4 žinutė iš 10
Spausdinti pranešimą
Kad man vistiek tas pats be žado
2007 Spa. 10 18:10:58          5 žinutė iš 10
Spausdinti pranešimą
Megink dbr.

2007 Spa. 10 19:10:57          6 žinutė iš 10
Spausdinti pranešimą
Vistiek nein be žado
2007 Spa. 10 20:10:39          7 žinutė iš 10
Spausdinti pranešimą
Megink si :

function opentable($title) {

   echo "<table border='0' style='border: 1px solid #C5CAD4' cellspacing='1' width='100%' cellpadding='3'>";
   echo "<tr><td background='".THEME."images/cellpic_sonas.gif' height='20'><font class='block-title'>$title</font></td></tr>";
   echo "<tr><td class='main-body'>\n";
}

// Close table end
function closetable() {
   echo "</td></tr></table>\n";
}

function openside($title) {

   echo "<table border='0' style='border: 1px solid #C5CAD4' cellspacing='1' width='100%' cellpadding='3'>";
        echo "<tr><td background='".THEME."images/cellpic_sonas.gif' height='20'><font class='block-title'>$title</font></td></tr>";
        echo "<tr><td><font class='block-title'>$subject</font></td></tr>";
        echo "</td></tr>";
   echo "<tr><td class='side-body' width='100%'>";
}

function closeside() {
   echo "</td></tr></table>";
   tablebreak();
}

function opensidex($title,$open="on") {

if($open=="on"){$box_img="off";}else{$box_img="on";}
   echo "<table border='0' style='border: 1px solid #C5CAD4' cellspacing='1' width='100%' cellpadding='3'><tr>";
        echo "<tr><td background='".THEME."images/cellpic_sonas.gif' height='24'><font class='block-title'>$subject</font></td></tr>";
   echo "<img align='left' vspace='2' onclick=\"javascript:flipBox('$title')\" name='b_$title' border='0' src='".THEME."images/panel_$box_img.gif'><font class='block-title'>$title</font>";
   echo "</td></tr>";
   echo "<tr><td class='side-body'width='100%'>";
   echo "<div id='box_$title'"; if($open=="off"){ echo "style='display:none'"; } echo ">\n";
}


function closesidex() {

   echo "</div></td></tr></table>";
   tablebreak();
}




2007 Spa. 10 20:10:05          8 žinutė iš 10
Spausdinti pranešimą
merkia akį Dėkui. Gal dar gali tą baltą juostelę nuimt, po cellpicu? Ji prie kiekvienos panelės. nežino


2007 Spa. 10 20:10:48          9 žinutė iš 10
Spausdinti pranešimą
cia jau style.scc spalva reikia pakeisti

www.skanaus.eu
www.tut.lt
www.liaudiesmedicina.eu
2007 Spa. 10 21:10:54          10 žinutė iš 10
Spausdinti pranešimą
O tiksliau kur? drovus Aš su temom nelb moku, tai sorry už tokius durnus klsm... šypsosi
Peršokti į forumą: