Navigacija

Vartotojų tinkle

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

Registruoti nariai: 25,968
Naujausias narys: Loretukas222

Naujausi straipsniai

Paskutiniai nariai

Reikalas 2 savaitės
tanos 4 savaitės
LnKnPrK110 savaitės
inti12 savaitės
kileedyg18 savaitės
Kižas25 savaitės
Bruksnys26 savaitės
laleceylan5027 savaitės
minimukas28 savaitės
N-2031 savaitės
Rytis31 savaitės
DjArtas33 savaitės
WolfHammer33 savaitės
Nostesi43 savaitės
Wisedocs43 savaitės
asdasdddz47 savaitės
Paslapties K...48 savaitės
Audrius_1750 savaitės
Simbijanas63 savaitės
Karinacraft63 savaitės

Informacija:


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

LnKnPrK1
2026 Bir. 21 09:06:52
Sveiki, gal kas is administracijos gali parasyti man PM,aciu

minimukas
2026 Vas. 21 08:02:25
oi oi akinanti šypsen yra dar cia gyvu? akinanti šypsen

N-20
2026 Vas. 6 21:02:05
O mes dar gyvi šypsosi)

WolfHammer
2026 Sau. 25 01:01:35
drovus

Žmogus
2025 Geg. 31 10:05:18
Kas geresnio? š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ų: 4502      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ą: