Navigacija

Vartotojų tinkle

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

Registruoti nariai: 25,957
Naujausias narys: keistuole

Naujausi straipsniai

Paskutiniai nariai

keistuole 1 savaitė
Gizmis 2 savaitės
Reikalas 2 savaitės
Rytis12 savaitės
MaFetas16 savaitės
ozzWANTED17 savaitės
saulyzas19 savaitės
TOMIJUS20 savaitės
Jaunelis36 savaitės
lanis36 savaitės
And2s37 savaitės
Memento Mori42 savaitės
Quwqkibor44 savaitės
asirija48 savaitės
tomeem50 savaitės
weberiz53 savaitės
mRokass56 savaitės
kartoonas57 savaitės
grunskiz60 savaitės
Bruksnys60 savaitės

Informacija:


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

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

MaFetas
2024 Lap. 13 22:11:57
hey how, geras dar veikiantis saitas?

Jaunelis
2024 Lie. 25 11:07:43
Oho vis dar veikia svetainė akinanti šypsen Šimtas metų, matau Šaukykloje nuostalgija. Smagu panaršyt po forumą ir pažiūrėt senas temas šypsosi

And2s
2024 Lie. 17 19:07:04
2008 pirmą kart čia patekau, man buvo 10m ir čia pramokau programavimo.. smagu skaityti senas žinutes, tokia nostalgija akinanti šypsen ačiū Ozz kad saugoji šitą kultūrinį reliktą š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
table
Forumas | PHP-Fusion, WordPress, Shopify, PHP ir MySQL (PROGRAMAVIMAS) | Bendri PHP-F klausimai

Autorius: _Tomas Peržiūrų: 3500      Spausdinti temą
2008 Geg. 1 18:05:31          1 žinutė iš 15
Spausdinti pranešimą
Taigi.
Vienam mode yra Table balta t.y. last seen users panel kur rodo žmonės on ar off.

Pas mane Juodas fonas ir kaip nors eina pakeisti table fona nes jis baltas be žado įmanoma pakeist?

2008 Geg. 1 18:05:16          2 žinutė iš 15
Spausdinti pranešimą
Taip įmanoma.

2008 Geg. 1 18:05:34          3 žinutė iš 15
Spausdinti pranešimą
Sharkman parašė:
Taip įmanoma.


Galėtum pasakyt kaip nežino

2008 Geg. 1 18:05:10          4 žinutė iš 15
Spausdinti pranešimą
Toi panelei susirask BGCOLOR=#FFFFFF ir keisk i
BGCOLOR=#000000 ar kazkas panasaus ;D

WKO tm
2008 Geg. 1 18:05:31          5 žinutė iš 15
Spausdinti pranešimą
just4mat parašė:
Toi panelei susirask BGCOLOR=#FFFFFF ir keisk i
BGCOLOR=#000000 ar kazkas panasaus ;D


Jeigu toks gudrus tai pakeisk :)

<?php
/*---------------------------------------------------+
| PHP-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright © 2002 - 2005 Nick Jones
| http://www.php-fusion.co.uk/
+----------------------------------------------------+
| Released under the terms & conditions of v2 of the
| GNU General Public License. For details refer to
| the included gpl.txt file or visit http://gnu.org
+----------------------------------------------------*/
if (!defined("IN_FUSION")) { header("Location:../../index.php"); exit; }

if (file_exists(INFUSIONS."last_seen_users_panel/locale/".$settings['locale'].".php")) {
   include INFUSIONS."last_seen_users_panel/locale/".$settings['locale'].".php";
} else {
   include INFUSIONS."last_seen_users_panel/locale/English.php";
}

openside($locale['lsup000']);
$result = dbquery("SELECT * FROM ".$db_prefix."users WHERE user_lastvisit>'0' AND user_status='0' ORDER BY user_lastvisit DESC LIMIT 0,10");
echo "<table cellpadding='0' cellspacing='0' width='100%'>";
if (dbrows($result) != 0) {
   while ($data = dbarray($result)) {
      $lastseen = time() - $data['user_lastvisit'];
      $iW=sprintf("%2d",floor($lastseen/604800));
      $iD=sprintf("%2d",floor($lastseen/(60*60*24)));
      $iH=sprintf("%02d",floor((($lastseen%604800)%86400)/3600));
      $iM=sprintf("%02d",floor(((($lastseen%604800)%86400)%3600)/60));
      $iS=sprintf("%02d",floor((((($lastseen%604800)%86400)%3600)%60)));
      if ($lastseen < 60){
         $lastseen= $locale['lsup001'];
      } elseif ($lastseen < 360){
         $lastseen= $locale['lsup002'];
      } elseif ($iW > 0){
         if ($iW == 1) { $text = $locale['lsup003']; } else { $text = $locale['lsup004']; }
         $lastseen = $iW." ".$text;
      } elseif ($iD > 0){
         if ($iD == 1) { $text = $locale['lsup005']; } else { $text = $locale['lsup006']; }
         $lastseen = $iD." ".$text;
      } else {
         $lastseen = $iH.":".$iM.":".$iS;
      }
      echo "<tr>\n<td class='side-small' align='left'><img src='".THEME."images/bullet.gif' alt=''>\n";
      echo "<a href='".BASEDIR."profile.php?lookup=".$data['user_id']."' title='".$data['user_name']."' class='side'>\n";
      echo trimlink($data['user_name'], 15)."</a></td><td class='side-small' align='right'>".$lastseen."</td>\n</tr>\n";
   }
}
echo "</table>";
closeside();
?>




2008 Geg. 1 19:05:27          6 žinutė iš 15
Spausdinti pranešimą
Aš manau, kad čia styles.css kaška reikia spec. tam dalykui parašyti, bet nesidomių tai negalių padėti. žliumbia
2008 Geg. 1 19:05:00          7 žinutė iš 15
Spausdinti pranešimą
užeik į styles.css ir ten tbl, tbl1, tbl border, kur bg-color keisk į savo norimą

FCBarcelona
mes que un club
2008 Geg. 1 19:05:28          8 žinutė iš 15
Spausdinti pranešimą
visi tbl priskirti Kaikurioms panelems...

2008 Geg. 1 19:05:47          9 žinutė iš 15
Spausdinti pranešimą
Savizudisz parašė:
visi tbl priskirti Kaikurioms panelems...


o main-body?

FCBarcelona
mes que un club
2008 Geg. 1 19:05:16          10 žinutė iš 15
Spausdinti pranešimą
Čia vidurio tekstas akinanti šypsen

2008 Geg. 1 19:05:10          11 žinutė iš 15
Spausdinti pranešimą
Nžn, nžn kame šaknys, su tbl turėtų pavykt

FCBarcelona
mes que un club
2008 Geg. 1 19:05:06          12 žinutė iš 15
Spausdinti pranešimą
keičiau visus nieko nepavyko.

style.css prisegu


_Tomas prisegtu failu:
styles_4.rar
2008 Geg. 1 20:05:31          13 žinutė iš 15
Spausdinti pranešimą
Pabandyk:
a {
color : #dd7401;
text-decoration : none;
}

a:hover {
color : #dd7401;
text-decoration : none;
}

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

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

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;
margin-top: 0px;
margin-bottom: 0px;
}

.paneles {
font-family : Verdana, Arial, Helvetica, sans-serif;
background: url('images/paneles.gif');
height: 168px;
width: 764px;
font-size : 10px;
color : #49AEB8
}

form {
margin : 0px;
}

hr {
height : 1px;
border : 1px dotted #62920b;
}

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 : #ef7438;
}

.outer-border {
border : none;
}

.sub-header {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #000;
background-color : #888;
border-top : 1px solid #000;
border-bottom : 1px solid #000;
padding : 5px;
}


.footer {
font-family : Verdana, Arial, Helvetica, sans-serif;
background: url('images/footer.gif');
width: 900px;
height: 119px;
color : #ffffff;
font-size : 5px;
text-align : center;
padding-left : 20px;
padding-right : 120px;
padding-top : 90px;
}

.button {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #588011;
background-color : #051c00;
height : 18px;
border : 1px dashed #588011;
margin-top : 2px;
}

.button_2 {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #588011;
background-color : #051c00;
height : 18px;
border : 1px dashed #588011;
margin-top : 2px;
}

.textbox {
background-color : #051c00;
font-size : 10px;
font-family : Verdana, Arial, Helvetica, sans-serif;
color : #de7203;
border : 1px dashed #426907;

}

.textbox_2 {
background-color : #051c00;
font-size : 10px;
font-family : Verdana, Arial, Helvetica, sans-serif;
color : #ef7438;
border : 1px dashed #426907;

}

.main-body {
font-family : Arial;
font-size : 11px;
color : #ffffff;
padding : 4px 0px 5px 0px;
padding-top : 20px;

}

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

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

.border {
border :none;
}

.side-border-left {
color : #777;

padding : 10px 5px 10px 10px;
}

.side-border-right {
color : #777;

padding : 10px 10px 10px 5px;
}

.news-footer {
background-image: url('images/news-footer.gif');
width: 567px;
height: 21px;
font-size : 9px;
color : #dd7401;
font-weight : none;
padding : 3px 4px 4px 4px;
}

.capmain {
background-image: url('images/capmain.gif');
width: 545px;
height: 34px;
font-family : Arial, Helvetica, sans-serif;
font-size : 18px;
font-weight : bolder;
color : #dd7401;

}

.scapmain {
background-image: url('images/scapmain.gif');
width: 165px;
height: 32px;
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 11px;
font-weight : bold;
color : #dd7401;
text-align : center;
padding : 4px;
}

.tbl-border {
border : 1px dashed #426907;


}

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

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

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

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

.quote {
font-size : 11px;
color : #97b15e;
background-color : #0727001;
padding : 4px;
margin : 0px 20px 0px 20px;
border : 1px dashed #97b15e;
}

.poll {
height : 3px;

}

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

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

}

.shoutbox {
color : #97b15e;

}

.shoutboxdate {
font-weight : italic;
font-size : 10px;
color : #588011;

}

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

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

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

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

2008 Geg. 1 20:05:50          14 žinutė iš 15
Spausdinti pranešimą
Nieko.
Tiesiog išbalinai viena u-ctr panelę ir viskas akinanti šypsen

2008 Geg. 1 20:05:51          15 žinutė iš 15
Spausdinti pranešimą
nu nzn nzn bandyk to scripto php kokiam pakeist ka nors ar pan... galvoja
Peršokti į forumą: