manex
Narys
Kapitonas
Pranešimai: 805
Įstojęs: 2008 Sau. 23 19:01:39
|
Sveiki, kurioje styles vietoje galėčiau pakeisti iš balto į juoda spalva šitame reikaliuke?
Ir prie to pačios noriu paklausti kurioje Locale faile galiu pakeisti tekstą: Mano paskutinis pranešimas, Mano paskutinė žinutė, Nauji pranešimai.
www.FraG.Lt - Žaidimų Portalas..
Prisijunk ir tu - CSS.FRAG.LT |
Impossibru
Narys
Ekspertas
Pranešimai: 3157
Įstojęs: 2007 Spa. 12 14:10:08
|
2 klausymo atsakymas. locale/Lithuanian/global.php ieškok // Latest Active Forum Threads panel
Andrejaus tinklalapis |
manex
Narys
Kapitonas
Pranešimai: 805
Įstojęs: 2008 Sau. 23 19:01:39
|
Dėkų, beliko 1 klausimas.
www.FraG.Lt - Žaidimų Portalas..
Prisijunk ir tu - CSS.FRAG.LT |
Impossibru
Narys
Ekspertas
Pranešimai: 3157
Įstojęs: 2007 Spa. 12 14:10:08
|
Įdėk panelės koda,pas mane v7 tai nežinau kodo.
Andrejaus tinklalapis |
manex
Narys
Kapitonas
Pranešimai: 805
Įstojęs: 2008 Sau. 23 19:01:39
|
Nelabai norėčiau dalint styles, gal kas kitas žinos.
www.FraG.Lt - Žaidimų Portalas..
Prisijunk ir tu - CSS.FRAG.LT |
Impossibru
Narys
Ekspertas
Pranešimai: 3157
Įstojęs: 2007 Spa. 12 14:10:08
|
Ne style,o panelės koda
Andrejaus tinklalapis |
manex
Narys
Kapitonas
Pranešimai: 805
Įstojęs: 2008 Sau. 23 19:01:39
|
Na nežinau kam tau to kodo juk iš themes styles spalva statosi, bet va:
<?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; }
$result = dbquery(
"SELECT tf.*, tt.*, tu.user_id,user_name, MAX(tp.post_id) as last_id, COUNT(tp.post_id) as count_posts FROM ".$db_prefix."forums tf
INNER JOIN ".$db_prefix."threads tt USING(forum_id)
INNER JOIN ".$db_prefix."posts tp USING(thread_id)
INNER JOIN ".$db_prefix."users tu ON tt.thread_lastuser=tu.user_id
WHERE ".groupaccess('forum_access')." GROUP BY thread_id ORDER BY thread_lastpost DESC LIMIT 0,".$settings['numofthreads']
);
if (dbrows($result) != 0) {
$i = 0;
opentable($locale['025']);
echo "<table cellpadding='0' cellspacing='1' width='100%' class='tbl-border'>\n<tr>\n";
if ($theme_width == "100%") echo "<td class='tbl2'><span class='small'><b>".$locale['030']."</b></span></td>\n";
echo "<td class='tbl2'><span class='small'><b>".$locale['031']."</b></span></td>
<td align='center' width='1%' class='tbl2' style='white-space:nowrap'><span class='small'><b>".$locale['033']."</b></span></td>
<td align='center' colspan='2' width='1%' class='tbl2' style='white-space:nowrap'><span class='small'><b>".$locale['034']."</b></span></td>
</tr>\n";
while ($data = dbarray($result)) {
if ($i % 2 == 0) { $row_color = "tbl1"; } else { $row_color = "tbl2"; }
echo "<tr>\n";
if ($theme_width == "100%") {
echo "<td width='45%' class='$row_color'><span class='small'>".$data['forum_name']."</span></td>
<td width='55%' class='$row_color'><span class='small'><a href='".FORUM."viewthread.php?forum_id=".$data['forum_id']."&thread_id=".$data['thread_id']."&pid=".$data['last_id']."#post_".$data['last_id']."' title='".$data['thread_subject']."'>".trimlink($data['thread_subject'], 30)."</a></span></td>\n";
} else {
echo "<td width='100%' class='$row_color'><span class='small'><a href='".FORUM."viewthread.php?forum_id=".$data['forum_id']."&thread_id=".$data['thread_id']."&pid=".$data['last_id']."#post_".$data['last_id']."' title='".$data['thread_subject']." (".$data['forum_name'].")'>".trimlink($data['thread_subject'], 30)."</a></span></td>\n";
}
echo "<td align='center' width='1%' class='$row_color' style='white-space:nowrap'><span class='small'>".($data['count_posts']-1)."</span></td>
<td align='center' width='1%' class='$row_color' style='white-space:nowrap'><span class='small'><a href='".BASEDIR."profile.php?lookup=".$data['thread_lastuser']."'>".$data['user_name']."</a></span></td>
<td align='center' width='1%' class='$row_color' style='white-space:nowrap'><span class='small'>".showdate("forumdate", $data['thread_lastpost'])."</span></td>
</tr>\n";
$i++;
}
if (iMEMBER) {
echo "<tr>\n<td align='center' colspan='5' class='tbl1'><span class='small'><a href='".INFUSIONS."forum_threads_list_panel/my_threads.php'>".$locale['026']."</a> |
<a href='".INFUSIONS."forum_threads_list_panel/my_posts.php'>".$locale['027']."</a> |
<a href='".INFUSIONS."forum_threads_list_panel/new_posts.php'>".$locale['028']."</a></span></td>\n</tr>\n";
}
echo "</table>\n";
closetable();
}
?>
www.FraG.Lt - Žaidimų Portalas..
Prisijunk ir tu - CSS.FRAG.LT |
Impossibru
Narys
Ekspertas
Pranešimai: 3157
Įstojęs: 2007 Spa. 12 14:10:08
|
style='white-space:nowrap'
$row_color
Andrejaus tinklalapis |
manex
Narys
Kapitonas
Pranešimai: 805
Įstojęs: 2008 Sau. 23 19:01:39
|
Betai man ir dar šaukyklos mygtukai balti, beto kaip kita theme uzsimetu viska gerai buna, Galėčiau duot tos themes style pasakytum kurioi vietoi ta dalyka pakeist gali?
www.FraG.Lt - Žaidimų Portalas..
Prisijunk ir tu - CSS.FRAG.LT
Redagavo manex 2009 Bal. 8 23:04:15 |
Impossibru
Narys
Ekspertas
Pranešimai: 3157
Įstojęs: 2007 Spa. 12 14:10:08
|
Žinok sunku man padėt kai temu nekuriu
Andrejaus tinklalapis |
Pongis
Narys
Tankas
Pranešimai: 2272
Įstojęs: 2007 Vas. 18 11:02:23
|
manex parašė:
Nelabai norėčiau dalint styles, gal kas kitas žinos.
Pff.. tokį dalyką iš tavo saito bet kas gali pasiimti, o kas norės tas ir pasiims. theme.php nedalink, o styles gali.
|
manex
Narys
Kapitonas
Pranešimai: 805
Įstojęs: 2008 Sau. 23 19:01:39
|
Na jeigu taip sakai, tai štai styles:
a {
color : #FFF;
text-decoration : none;
}
a:hover {
color : #FFF;
text-decoration : underline;
}
a.side {
color : #FFF;
text-decoration : none;
}
a:hover.side {
color : #FFF;
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;
background-image:url(images/bg.gif);
padding:0px 0px 0px 0px;
margin-top: 0px;
margin-left: 0px;
margin-right: 0px;
margin-bottom: 0px;
background-repeat: no-repeat;
}
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;
color : #bcbcbc;
background-color : #212322;
border : 1px solid #4e534d;
height : 18px;
margin-top : 2px;
}
.textbox {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #bcbcbc;
background-color : #212322;
border : 1px solid #4e534d;
}
.main-body {
font-size : 11px;
color : #bcbcbc;
padding : 4px 4px 5px 4px;
background-image:url(images/table_02.gif);
}
.side-body {
font-family : Tahoma;
font-size : 10px;
color : #bcbcbc;
padding : 4px;
padding-left:2px;
padding-right:2px;
background-image:url(images/panel_02.gif);
background-repeat: no-repeat;
background-color : #393b3d;
}
.main-bg {
color : #555;
padding : 5px;
}
.outer-border {
border : 1px solid #ccc;
}
.border {
border : 1px solid #e1e1e1;
}
.side-border-left {
padding : 5px;
}
.side-border-right {
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 : Tahoma;
font-size : 10px;
color : #FFF;
height:23px;
background-image:url(images/table_01.gif);
}
.scapmain {
font-family : Tahoma;
font-size : 10px;
color : #FFF;
height:26px;
text-align:center;
background-image:url(images/panel_01.gif);
}
.tbl-border {
}
.tbl {
}
.tbl1 {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #bcbcbc;
background-color : #212322;
border : 1px solid #4e534d;
padding : 4px
}
.tbl2 {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #bcbcbc;
background-color : #292b2a;
border : 1px solid #4e534d;
padding : 4px
}
forum-caption {
font-size : 11px;
font-weight : bold;
color : #bcbcbc;
background-color : #212322;
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;
}
.shoutbox {
color : #777;
}
.shoutboxdate {
font-size : 10px;
color : #888;
}
.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;
}
www.FraG.Lt - Žaidimų Portalas..
Prisijunk ir tu - CSS.FRAG.LT |
manex
Narys
Kapitonas
Pranešimai: 805
Įstojęs: 2008 Sau. 23 19:01:39
|
Up
www.FraG.Lt - Žaidimų Portalas..
Prisijunk ir tu - CSS.FRAG.LT |
manex
Narys
Kapitonas
Pranešimai: 805
Įstojęs: 2008 Sau. 23 19:01:39
|
Up.
www.FraG.Lt - Žaidimų Portalas..
Prisijunk ir tu - CSS.FRAG.LT |
manex
Narys
Kapitonas
Pranešimai: 805
Įstojęs: 2008 Sau. 23 19:01:39
|
Up
www.FraG.Lt - Žaidimų Portalas..
Prisijunk ir tu - CSS.FRAG.LT |
manex
Narys
Kapitonas
Pranešimai: 805
Įstojęs: 2008 Sau. 23 19:01:39
|
Aukštyn.
www.FraG.Lt - Žaidimų Portalas..
Prisijunk ir tu - CSS.FRAG.LT |