Noyz
Narys
Ekspertas
Pranešimai: 2487
Įstojęs: 2010 Sau. 4 18:01:11
|
Sveiki, turiu headerio kodą :
function render_header($header_content) {
global $theme_width, $userdata, $aidlink, $settings, $db_prefix;
echo "<table cellpadding='0' cellspacing='0' width='937' align='center'>
<tr>
<td class='header'>
<div id='plotas'>
<div id='naujausia'>\n"; include THEME."latest_downloads_panel.php"; echo "</div>
<div id='populiariausia'>\n"; include THEME."popular_downloads_panel"; echo "</div>
</div>
</td>
</tr>
</div>
</td>
</tr>
</table>\n";
echo "<table cellpadding='0' cellspacing='0' width='937' align='center'>\n<tr>\n";
}
į styles.css įrašiau :
---
dizaino failuose įdėti popular_downloads_panel ir latest_downloads_panel
Bet siuntinių headeryje nematau, kame bėda?
2 Dalis :
Kai įdedu šį kodą, render_news :
---
Tuomet dingsta apačia, news_footer.png nors su classais viskas gerai.
|
Nachal
Narys
Terminatorius
Pranešimai: 1255
Įstojęs: 2008 Gru. 3 08:12:59
|
Parašiau kodą į skype.
|
Noyz
Narys
Ekspertas
Pranešimai: 2487
Įstojęs: 2010 Sau. 4 18:01:11
|
Nieko neparašė, vis dar laukiu jūsų pagalbos.............
|
kael
Narys
Kapitonas
Pranešimai: 641
Įstojęs: 2010 Bal. 18 07:04:33
|
Surandam savo render header pvz:
function render_header($header_content) {
global $theme_width;
echo "<table align='center' width='100%' cellspacing='0' cellpadding='15'>
<tr><td class='outer-border'>
<table align='center' width='100%' cellspacing='0' cellpadding='0'>
<tr><td class='inner-border'>
<table align='center' width='100%' cellspacing='0' cellpadding='0'>
<tr><td class='full-header'>
<table width='100%' cellspacing='0' cellpadding='0'>
<tr>
<td>$header_content</td>
</tr>
</table>
</td>
</tr>
</table>\n";
echo "<table width='100%' cellspacing='0' cellpadding='0'>\n<tr>
<td class='sub-header'>".showsublinks("·")."</td>
<td align='right' class='sub-header'>".showsubdate()."</td>
</tr>
</table>\n";
Čia tik pvz pas jus gali būti kitaip, tą savo render header kodą ištinam iki šitos vietos:
echo "<table width='100%' cellspacing='0' cellpadding='0'>\n<tr>\n";
}
ir tada dedam naują render header kodą:
function render_header($header_content) {
global $theme_width,$settings,$locale,$userdata,$aidlink,$db_prefix;
echo "<table class='forumline' align='center' width='$theme_width' cellspacing='0' cellpadding='0' style='border-right: solid #000000 1px; border-left: solid #000000 1px; border-top: solid #000000 1px; margin-top: -5px;'>";
echo "<tr><td><table align='center' width='100%' cellspacing='0' cellpadding='0'>";
echo "<tr><td><table align='center' width='100%' cellspacing='0' cellpadding='0'>";
echo "<tr><td class='header' width='100%'>";
echo "<tr><table align=center width=100% height=100 background='".THEME."images/header.png' border=0 cellspacing=0 cellpadding=0>";
echo"<tr><td height=50 class='nuorodos' align='center' style='padding-right:50px; padding-top:130px;'><br>";
echo"<table width='50%'><tr>";
echo"<td width='40%'>";
$result = dbquery("SELECT * FROM ".$db_prefix."downloads ORDER BY download_datestamp DESC LIMIT 0,4");
if (dbrows($result) != 0) {
echo "<table width='100%'>";
while ($data = dbarray($result)) {
echo "<tr>
<td class='small'>
<img src='".THEME."images/bullet.gif'>
<a href='".BASEDIR."downloads.php?cat_id=".$data['download_cat']."&download_id=".$data['download_id']."' title='".$data['download_title']."' class='side'>".trimlink($data['download_title'], 23)."</a>
</td>
<td align='right'>".$data['download_count']."</td>
</tr>";
}
echo "</table>";
} else {
echo "<div style='text-align:center'>".$locale['004']."</div>\n";
}
echo "</td><td width='60%' style='padding-left:80px;' >";
$result = dbquery("SELECT * FROM ".$db_prefix."downloads ORDER BY download_datestamp DESC LIMIT 0,4");
if (dbrows($result) != 0) {
echo "<table width='100%'>";
while ($data = dbarray($result)) {
echo "<tr>
<td class='small'>
<img src='".THEME."images/bullet.gif'>
<a href='".BASEDIR."downloads.php?cat_id=".$data['download_cat']."&download_id=".$data['download_id']."' title='".$data['download_title']."' class='side'>".trimlink($data['download_title'], 23)."</a>
</td>
<td align='right'>".$data['download_count']."</td>
</tr>";
}
echo "</table>";
} else {
echo "<div style='text-align:center'>".$locale['004']."</div>\n";
}
echo "</tr>
</table>";
echo "</td></tr>
<tr></tr>
<tr><td height=31></td></tr>
</table>
";
echo"</td></tr><tr></tr><tr><td></td></tr></table>";
Padėjau? +10
Skype: pancea.one.lt
Rašykit kuriems reikia pagalbos
su kompiuteriais,tinklalapiais ir pan. |
Noyz
Narys
Ekspertas
Pranešimai: 2487
Įstojęs: 2010 Sau. 4 18:01:11
|
Kam žaisti su tokiais ilgais kodais, jeigu galima su 2x mažesniu kodu? Tik nepradedam ot, laukiu tų kas žino kaip padaryt pagal mano darymą.
|
Jaunelis
Narys
Antras po Dievo
Pranešimai: 4735
Įstojęs: 2007 Rugs. 23 08:09:32
|
<div id='naujausia'>\n"; include THEME."latest_downloads_panel.php"; echo "</div>
<div id='populiariausia'>\n"; include THEME."popular_downloads_panel"; echo "</div>
nafik tie echo ? kiek pamenu turėtu buti taip:
<div id='naujausia'>
<?php include_once("themes/dizas/latest_downloads_panel.php"); echo $text;?>
</div>
<div id='populiariausia'>
<?php include_once("themes/dizas/popular_downloads_panel.php"); echo $text;?>
</div>
ten kur dizas tai dizo pavadinima įrašyk
code and design solutions tinklalapių kūrimas
Redagavo Jaunelis 2010 Geg. 25 22:05:42 |
Noyz
Narys
Ekspertas
Pranešimai: 2487
Įstojęs: 2010 Sau. 4 18:01:11
|
Dabar išviso tik baltą ekraną rodo .....................
|
kael
Narys
Kapitonas
Pranešimai: 641
Įstojęs: 2010 Bal. 18 07:04:33
|
Noyz žinai geriau parašyt ilgą neigu išvis nieko
Skype: pancea.one.lt
Rašykit kuriems reikia pagalbos
su kompiuteriais,tinklalapiais ir pan. |
Noyz
Narys
Ekspertas
Pranešimai: 2487
Įstojęs: 2010 Sau. 4 18:01:11
|
Kodėl nieko? Sulauksiu galbūt pagalbos ir viskas bus gerai, išmoksiu nedaryti klaidų su divais.
|
And2s
VIP narys
Pulkininkas
Pranešimai: 329
Įstojęs: 2009 Bal. 30 19:04:04
|
<div id='populiariausia'>\n"; include THEME."popular_downloads_panel.php"; echo "</div>
.php galune pamirsai prideti.
www.MAFIACLUB.lt |
Noyz
Narys
Ekspertas
Pranešimai: 2487
Įstojęs: 2010 Sau. 4 18:01:11
|
Vistiek neveikia nesuprantu..............................
Loooool nebuvau siuntinių padaręs pačiame saite tai ir neveikė DD
|
Noyz
Narys
Ekspertas
Pranešimai: 2487
Įstojęs: 2010 Sau. 4 18:01:11
|
Galit dar į vieną atsakyt? Turiu function render news kodą, man reikia, kad nerodytų nei skaityti daugiau nei nieko:
function render_news($subject, $news, $info) {
echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='capmain' align='center'>$subject</td>
</tr>
<tr>
<td class='main-body'>$news</td>
</tr>
<tr>
<td align='center' class='news-footer'>\n";
echo openform("N",$info['news_id']).newsposter($info," ·").newsopts($info,"·").closeform("N",$info['news_id']);
echo "</td>
</tr>
</table>\n";
}
Galit padaryt?
|
edeni
Narys
Terminatorius
Pranešimai: 1502
Įstojęs: 2008 Vas. 7 19:02:18
|
function render_news($subject, $news, $info) {
echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='capmain' align='center'>$subject</td>
</tr>
<tr>
<td class='main-body'>$news</td>
</tr>
</table>\n";
}
http://itouch.lt - iBendruomenė. |
Noyz
Narys
Ekspertas
Pranešimai: 2487
Įstojęs: 2010 Sau. 4 18:01:11
|
Dingsta headeris kai įdedu, nesuprantu ble ..............
|