Navigacija

Vartotojų tinkle

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

Registruoti nariai: 25,952
Naujausias narys: tomeem

Naujausi straipsniai

Paskutiniai nariai

asirija 2 savaitės
tomeem 4 savaitės
Reikalas 5 savaitės
weberiz 7 savaitės
mRokass10 savaitės
kartoonas11 savaitės
iaescortsmap11 savaitės
ozzWANTED12 savaitės
grunskiz14 savaitės
Bruksnys14 savaitės
illusion14 savaitės
ordo15 savaitės
Jurgaila16 savaitės
originalcs1616 savaitės
Rytis17 savaitės
halis18 savaitės
junkus21 savaitės
morlis21 savaitės
Majakas22 savaitės
andsoft23 savaitės

Informacija:


OS: Unknown
Naršyklė: Nežinoma
IP: 18.118.226.26
Naujienų: 529
Straipsnių: 235
Temų: 52,585
Postų: 522,523
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.

ozzWANTED
2024 Sau. 17 01:01:00
Desperatiškus komentarus šaukykloje su accountu po mėnesio prasibuvimo, ištryniau. Pasaulis ir taip juodas. Įjungiam šviesą, prašviesės. šypsosi

Majakas
2023 Gru. 10 19:12:39
Negaliu patikėti jog žinutės/pranešimai visi yra nuo 2008 m akinanti šypsen

Žmogus
2023 Rugs. 7 21:09:14
O gal BloodKiller pasijungs?

Apocal
2023 Rugs. 2 18:09:23
Nu davai nuveikiam kažką akinanti šypsen. Prisijungti kada visi čia akinanti šypsen.

Apocal
2023 Rugs. 2 00:09:18
Šiaip atėjau pažiūrėti ar dar lopas nesby yra ar koks ten buvo.

Š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
Dėl paplėtimo
Forumas | PHP-Fusion, WordPress, Shopify, PHP ir MySQL (PROGRAMAVIMAS) | Žaliems

Autorius: Valuediz Peržiūrų: 2937      Spausdinti temą
2008 Bal. 28 15:04:14          1 žinutė iš 10
Spausdinti pranešimą
Kaip reikia praplėsti puslapį į viršų ir apačią, nes lieka background juosta virš headerio ir žemiau footerio.
2008 Bal. 28 15:04:52          2 žinutė iš 10
Spausdinti pranešimą
duok theme.php
2008 Bal. 28 15:04:18          3 žinutė iš 10
Spausdinti pranešimą
va theme.php
define('IN_REVISION', true);
require_once(INCLUDES.'theme_functions_include.php');
require_once(THEME.'includes/navigationbar.class.php');
require_once(THEME.'theme_config.php');

function render_header() {
   global $theme_width, $rtNavbar, $rtHeader, $settings;
   if ((isset($rtHeader['logo_url'])) && (!empty($rtHeader['logo_url'])))
      $url = $rtHeader['logo_url'];
   else
      $url = false;

   if ((isset($rtHeader['logo_url_title'])) && (!empty($rtHeader['logo_url_title'])))
      $title = $rtHeader['logo_url_title'];
   else
      $title = false;

   echo "<script language='javascript' src='".THEME."includes/revision.js' type='text/javascript'></script>\n"
   ."<table align='center' border='0' cellpadding='0' cellspacing='0' width='1000'>\n"
   ."<tr><td class='pageLeft'></td><td width='1000' class='pageCenter' valign='top'>\n"
   ."<table border='0' cellpadding='0' cellspacing='0' id='header' width='100%'><tr>\n"
   ."<td class='logo' height='170' valign='top' width='100%'>"
   .($url ? "<a href='$url' onmousedown='return false;'".($title ? " title='".$title."'" : "").">" : "")
   ."<img".($title ? " alt='".$title."'" : " alt=''")." border='0' src='".THEME."images/logo.png'".($title ? " title='".$title."'" : "").">"
   .($url ? "</a>" : "")
   .((isset($rtHeader['slogan']) && !empty($rtHeader['slogan'])) ? "<br><span class='slogan'>".$rtHeader['slogan']."</span>" : "")."</td>\n";

   echo "</tr></table>\n";
   $rtNavbar->generate();
   echo "<table border='0' cellpadding='0' cellspacing='0' width='100%'><tr>\n";
}

function render_footer() {
   global $settings;
   echo "</tr></table>\n";
   // copyrighted line must stay intact and visible.
   echo "<table cellpadding='0' cellspacing='0' id='footer' width='100%'><tr><td nowrap='nowrap' valign='top'>Varikliukas: <a href='http://www.php-fusion.co.uk/' target='_blank' onmousedown='return false;'>PHP Fusion</a></td><td align='center' width='100%' style='padding-left:0px;padding-right:0px;'>".$settings['footer'].showcounter()."</td><td align='right' nowrap='nowrap' valign='top'></td></tr></table>\n";
   echo "</td><td class='pageRight'></td></tr>\n</table>\n";
}

function render_news($subject, $news, $info) {
   global $locale;
   opentable($subject);
   echo $locale['040'].newsposter($info)."\n"
   ."<br>\n<hr>\n<br>\n".$news."<br><br>\n<hr>\n"
   .openform("N",$info['news_id']).newsopts($info," &middot;").closeform("N",$info['news_id'])."\n";
   closetable();
}

function render_article($subject, $article, $info) {
   global $locale;
   opentable($subject);
   echo $locale['040'].articleposter($info)."\n"
   ."<br>\n<hr>\n<br>\n".$article."<br><br>\n<hr>\n"
   .openform("A",$info['article_id']).articleopts($info," &middot;").closeform("A",$info['article_id'])."\n";
   closetable();
}


function opentable($title) {
   echo "<table border='0' cellpadding='0' cellspacing='0' class='centerTitle' width='100%'><tr><td class='centerTitleOverlay' height='40' width='100%' valign='top'>".$title."</td></tr></table>\n";
   echo "<table border='0' cellpadding='0' cellspacing='0' width='100%'><tr><td class='centerContent' width='100%'>\n";
}
function closetable() {
   echo "</td></tr></table>\n";
   tablebreak();
}

function openside($title) {
   echo "<table border='0' cellpadding='0' cellspacing='0' class='sideTitle' width='100%'><tr><td class='sideTitleOverlay' height='40' width='100%' valign='top'>".$title."</td></tr></table>\n";
   echo "<table border='0' cellpadding='0' cellspacing='0' width='100%'><tr><td class='sideContent' width='100%'>\n";
}

function closeside() {
   echo "</td></tr></table>\n";
   sidebreak();
}

$boxcounter = 1;
function opensidex($title,$open="on") {
   global $boxcounter;
   $boxname = "expbox".$boxcounter;
   $boxcounter++;
   $box_img = ($open=="on" ? "off" : "on");
   echo "<table border='0' cellpadding='0' cellspacing='0' class='sideTitle' width='100%'><tr>"
   ."<td class='sideTitleOverlay' height='40' width='100%' valign='top'>".$title."</td>"
   ."<td class='sideTitleMinMax' nowrap='nowrap'><img onclick=\"javascript:flipBox('$boxname')\" name='b_$boxname' alt='$box_img' src='".THEME."images/panel_$box_img.gif'></td>"
   ."</tr></table>\n";
   echo "<table border='0' cellpadding='0' cellspacing='0' width='100%'><tr><td class='sideContent' width='100%'><div id='box_$boxname'".($open=="off" ? "style='display:none'" : "").">\n";
}

function closesidex() {
   echo "</div></td></tr></table>\n";
   sidebreak();
}

function tablebreak() {
   echo "<table cellpadding='0' cellspacing='0'><tr><td height='10'></td></tr></table>\n";
}

function sidebreak() {
   global $theme_panels_width;
   echo "<img alt='spacer' height='10' src='".THEME."images/spacer.gif' width='".$theme_panels_width."'>\n";
}
?>



2008 Bal. 28 15:04:38          4 žinutė iš 10
Spausdinti pranešimą
Iš tokio teme php nežinau dažniausiai buna taip viršus


$body_text = "#000000";
$body_bg = "#FFFFFF";
$theme_width = "100%";
$theme_width_l = "180";
$theme_width_r = "180";





2008 Bal. 28 15:04:37          5 žinutė iš 10
Spausdinti pranešimą
Šita duok: theme_config.php šypsosi

Rules: 21 & 22 Read first!
2008 Bal. 28 15:04:23          6 žinutė iš 10
Spausdinti pranešimą
stai ir theme_config.php
/* PHP Fusion theme default configurations */
$body_text = "#444444";
$body_bg = "#DAE2E3";
$theme_width = 1000;
$theme_panels_exclude = array("/forum/");

$theme_panels_width = 170;
// keep the width of the panels the same so it does not compress the tables
$theme_width_r = $theme_panels_width;
$theme_width_l = $theme_panels_width;


/* Revision Theme configurations */
# for support and explanation about these configurations please go to http://www.uworldirc.com/support...

// Page Header
$rtHeader['logo_url'] = BASEDIR.'index.php';
$rtHeader['logo_url_title'] = 'Front Page';
$rtHeader['rightside_member'] = "Welcome <strong>".$userdata['user_name']."</strong>";
$rtHeader['rightside_guest'] = "Welcome <strong>Guest</strong><br>please <a href='".BASEDIR."login.php'>login</a> or <a href='".BASEDIR."register.php'>register</a>";



Tai žino kasnors?

2008 Bal. 28 16:04:34          7 žinutė iš 10
Spausdinti pranešimą
nenoriu doublepostint, bet jau pora valandu praėjo. negi niekas nežino? galvoja
2008 Bal. 28 19:04:54          8 žinutė iš 10
Spausdinti pranešimą
styles.css - body } skiltis -> pridėk:
margin-top: 0px;
margin-bottom: 0px;

[galingų saliutų foto]
2008 Bal. 28 20:04:04          9 žinutė iš 10
Spausdinti pranešimą
Dekui!!merkia akį tikrai padėjei
Gal dar žinot kas kaip padaryt background, kad centre būtų, o ne nuo krašto?

2008 Bal. 28 20:04:02          10 žinutė iš 10
Spausdinti pranešimą
background-position: center;

[galingų saliutų foto]
Peršokti į forumą: