Brak możliwości wycentrowania
|
holohause |
Dodany dnia 05.08.2007 14:43:00
|
Początkujący
Postów: 120 Ostrzeżeń: 1
Data rejestracji: 12.07.2006 09:59
|
Otóż zrobiłem sobię podstronę, ale za chiny nie chce mi się wycentrować, proszę o pomoc.
<?php
/*---------------------------------------------------+
| PHP-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright © 2002 - 2006 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
+----------------------------------------------------*/
require_once "maincore.php";
require_once "subheader.php";
include LOCALE.LOCALESET."news_cats.php";
if (isset($cat_id) && !isNum($cat_id)) fallback(FUSION_SELF);
echo"
<table width='900' cellspacing='0' cellpadding='0'>
<tr>
<td width='900' align='center' valign='top'>
";
opentable($locale['']);
echo"
<tr>
<td width='200' valign='top'>
";
if (isset($cat_id)) {
$res = 0;
$result = dbquery("SELECT * FROM ".$db_prefix."news_cats WHERE news_cat_id='$cat_id'");
if (dbrows($result) || $cat_id == 0) {
$data = dbarray($result);
$rows = dbcount("(news_id)", "news", "news_cat='$cat_id' AND ".groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().")");
if ($rows) {
$res = 1;
echo "<table cellpadding='0' cellspacing='1' width='100%' class='tbl-border'>\n";
if ($cat_id != 0) {
} else {
echo "</td>\n</tr>\n<tr>\n<td width='150' class='tbl1' style='vertical-align:top'>None-Categorised News<br>\n";
echo "<b>".$locale['401']."</b> $rows</td>\n<td class='tbl1' style='vertical-align:top'>\n";
}
$result2 = dbquery("SELECT * FROM ".$db_prefix."news WHERE news_cat='$cat_id' AND ".groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().") ORDER BY news_datestamp DESC");
while ($data2 = dbarray($result2)) {
echo "<img src='".THEME."images/bullet.gif' alt=''> <a href='news.php?readmore=".$data2['news_id']."'>".$data2['news_subject']."</a><br>\n";
}
echo "</td>\n</tr>\n<tr>\n<td colspan='2' class='tbl1' style='text-align:center'><img src='".THEME."images/bullet.gif' alt=''> <a href='".FUSION_SELF."'>".$locale['406']."</a> <img src='".THEME."images/bulletb.gif' alt=''>";
echo "</td>\n</tr>\n</table>\n";
}
}
if (!$res) redirect(FUSION_SELF);
} else {
$res = 0;
$result = dbquery("SELECT * FROM ".$db_prefix."news_cats ORDER BY news_cat_id");
if (dbrows($result)) {
echo "<table cellpadding='0' cellspacing='1' width='100%' class='tbl-border'>\n";
while ($data = dbarray($result)) {
$rows = dbcount("(news_id)", "news", "news_cat='".$data['news_cat_id']."' AND ".groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().")");
echo "<tr>\n<td width='150' class='tbl1' style='vertical-align:top'>\n";
echo "</b> ".$data['news_cat_name']."<b><br>";
if ($rows) {
$result2 = dbquery("SELECT * FROM ".$db_prefix."news WHERE news_cat='".$data['news_cat_id']."' AND ".groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().") ORDER BY news_datestamp DESC LIMIT 3");
while ($data2 = dbarray($result2)) {
echo "<img src='".THEME."images/bullet.gif' alt=''> <a href='news.php?readmore=".$data2['news_id']."'>".$data2['news_subject']."</a><br>\n";
}
if ($rows > 3) echo "<div style='text-align:right'><img src='".THEME."images/bullet.gif' alt=''> <a href='".FUSION_SELF."?cat_id=".$data['news_cat_id']."'>".$locale['405']."</a></div>\n";
} else {
echo "<img src='".THEME."images/bullet.gif' alt=''> ".$locale['404']."\n";
}
}
$res = 1;
}
$result = dbquery("SELECT * FROM ".$db_prefix."news WHERE news_cat='0' AND ".groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().") ORDER BY news_datestamp DESC LIMIT 10");
if (dbrows($result)) {
if ($res == 0) echo "<table cellpadding='0' cellspacing='1' width='100%' class='tbl-border'>\n";
$nrows = dbcount("(news_id)", "news", "news_cat='0' AND ".groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().")");
echo "</td>\n</tr>\n<tr>\n<td width='150' class='tbl1' style='vertical-align:top'>".$locale['403']."<br>\n";
echo "<b>".$locale['402']."</b> $nrows</td>\n<td class='tbl1' style='vertical-align:top'>\n";
while ($data = dbarray($result)) {
echo "<img src='".THEME."images/bullet.gif' alt=''> <a href='news.php?readmore=".$data['news_id']."'>".$data['news_subject']."</a><br>\n";
}
$res = 1;
if ($nrows > 3) echo "<div style='text-align:right'><img src='".THEME."images/bullet.gif' alt=''> <a href='".FUSION_SELF."?cat_id=0'>".$locale['405']."</a></div>\n";
echo "<td class='tbl1' style='vertical-align:top'>\n";
}
if ($res == 1) {
echo "</td>\n</tr>\n</table>\n";
} else {
echo "<center><br>\n".$locale['407']."<br><br>\n</center>\n";
}
}
echo"</td>
<td valign='top'>
Tu wpisuje się treść strony
</td>
</tr>
</table>";
closetable();
echo"
</td>
</tr>
</table>";
require_once "footer.php";
?>
<!--ISO-->
a oto adres podstrony
http://jangtown.s...x_beta.php
PS może jeszcze inne błedy dacie rade naprawić np. przy tej tabelce z boczku znika tlo z table:(
Edytowane przez Pieka dnia 06.08.2007 14:00:58
|
|
|
|
Wścibski Gość |
Dodany dnia 24.11.2024 21:47:23
|
Pan Kontekstualny
Postów: n^x
Data rejestracji: Zawsze
|
|
IP: localhost |
|
|
DJPromo |
Dodany dnia 05.08.2007 14:51:16
|
Bywalec
Postów: 630 Pomógł: 41
v7.02.07 Data rejestracji: 13.06.2006 18:51
|
a znasz coś takiego jak ;)
<center></center>
echo"</td>
<td valign='top'>
<center>
Tu wpisuje się treść strony
</center>
</td>
</tr>
</table>";
Ps..// i Popraw ten kod bo aż oczy bolą jak go sie widzi:o
Edytowane przez DJPromo dnia 05.08.2007 14:56:08
Pomogłem Kliknij Pomógł
Życie to chwila zbyt krótka aby móc .... Życie to chwila / trzeba patrzeć i podziwiać
|
|
|
|
holohause |
Dodany dnia 05.08.2007 15:11:15
|
Początkujący
Postów: 120 Ostrzeżeń: 1
Data rejestracji: 12.07.2006 09:59
|
1. Mnie chdzilo o wycentrowanie calej zawartości strony czyli od opentable do closetable
2. <center> nie działa
3. kodu nie poprawie za bardzo bo nie znam kompletnie php |
|
|
|
Grzes |
Dodany dnia 05.08.2007 15:28:40
|
Zaawansowany
Postów: 1656 Pomógł: 42
Data rejestracji: 28.04.2005 20:28
|
Center nie działa? Wyśrodkowuje tekst w ramach tych 900px szerokości tabeli.
Często najmądrzejszą odpowiedzią jest milczenie
|
|
|
|
holohause |
Dodany dnia 05.08.2007 15:35:00
|
Początkujący
Postów: 120 Ostrzeżeń: 1
Data rejestracji: 12.07.2006 09:59
|
Zobacz http://jangtown.s...x_beta.php
oto kod tej strony, którą widziałeś.
<?php
/*---------------------------------------------------+
| PHP-Fusion 6 Content Management System
+----------------------------------------------------+
| Copyright © 2002 - 2006 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
+----------------------------------------------------*/
require_once "maincore.php";
require_once "subheader.php";
include LOCALE.LOCALESET."news_cats.php";
if (isset($cat_id) && !isNum($cat_id)) fallback(FUSION_SELF);
echo"<center>
<table width='900px' cellspacing='0' cellpadding='0'>
<tr>
<td width='900' align='center' valign='top'>
";
opentable($locale['']);
echo"
<tr>
<td width='200' valign='top'>
";
if (isset($cat_id)) {
$res = 0;
$result = dbquery("SELECT * FROM ".$db_prefix."news_cats WHERE news_cat_id='$cat_id'");
if (dbrows($result) || $cat_id == 0) {
$data = dbarray($result);
$rows = dbcount("(news_id)", "news", "news_cat='$cat_id' AND ".groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().")");
if ($rows) {
$res = 1;
echo "<table cellpadding='0' cellspacing='1' width='100%' class='tbl-border'>\n";
if ($cat_id != 0) {
} else {
echo "</td>\n</tr>\n<tr>\n<td width='150' class='tbl1' style='vertical-align:top'>None-Categorised News<br>\n";
echo "<b>".$locale['401']."</b> $rows</td>\n<td class='tbl1' style='vertical-align:top'>\n";
}
$result2 = dbquery("SELECT * FROM ".$db_prefix."news WHERE news_cat='$cat_id' AND ".groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().") ORDER BY news_datestamp DESC");
while ($data2 = dbarray($result2)) {
echo "<img src='".THEME."images/bullet.gif' alt=''> <a href='news.php?readmore=".$data2['news_id']."'>".$data2['news_subject']."</a><br>\n";
}
echo "</td>\n</tr>\n<tr>\n<td colspan='2' class='tbl1' style='text-align:center'><img src='".THEME."images/bullet.gif' alt=''> <a href='".FUSION_SELF."'>".$locale['406']."</a> <img src='".THEME."images/bulletb.gif' alt=''>";
echo "</td>\n</tr>\n</table>\n";
}
}
if (!$res) redirect(FUSION_SELF);
} else {
$res = 0;
$result = dbquery("SELECT * FROM ".$db_prefix."news_cats ORDER BY news_cat_id");
if (dbrows($result)) {
echo "<table cellpadding='0' cellspacing='1' width='100%' class='tbl-border'>\n";
while ($data = dbarray($result)) {
$rows = dbcount("(news_id)", "news", "news_cat='".$data['news_cat_id']."' AND ".groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().")");
echo "<tr>\n<td width='150' class='tbl1' style='vertical-align:top'>\n";
echo "</b> ".$data['news_cat_name']."<b><br>";
if ($rows) {
$result2 = dbquery("SELECT * FROM ".$db_prefix."news WHERE news_cat='".$data['news_cat_id']."' AND ".groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().") ORDER BY news_datestamp DESC LIMIT 3");
while ($data2 = dbarray($result2)) {
echo "<img src='".THEME."images/bullet.gif' alt=''> <a href='news.php?readmore=".$data2['news_id']."'>".$data2['news_subject']."</a><br>\n";
}
if ($rows > 3) echo "<div style='text-align:right'><img src='".THEME."images/bullet.gif' alt=''> <a href='".FUSION_SELF."?cat_id=".$data['news_cat_id']."'>".$locale['405']."</a></div>\n";
} else {
echo "<img src='".THEME."images/bullet.gif' alt=''> ".$locale['404']."\n";
}
}
$res = 1;
}
$result = dbquery("SELECT * FROM ".$db_prefix."news WHERE news_cat='0' AND ".groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().") ORDER BY news_datestamp DESC LIMIT 10");
if (dbrows($result)) {
if ($res == 0) echo "<table cellpadding='0' cellspacing='1' width='100%' class='tbl-border'>\n";
$nrows = dbcount("(news_id)", "news", "news_cat='0' AND ".groupaccess('news_visibility')." AND (news_start='0'||news_start<=".time().") AND (news_end='0'||news_end>=".time().")");
echo "</td>\n</tr>\n<tr>\n<td width='150' class='tbl1' style='vertical-align:top'>".$locale['403']."<br>\n";
echo "<b>".$locale['402']."</b> $nrows</td>\n<td class='tbl1' style='vertical-align:top'>\n";
while ($data = dbarray($result)) {
echo "<img src='".THEME."images/bullet.gif' alt=''> <a href='news.php?readmore=".$data['news_id']."'>".$data['news_subject']."</a><br>\n";
}
$res = 1;
if ($nrows > 3) echo "<div style='text-align:right'><img src='".THEME."images/bullet.gif' alt=''> <a href='".FUSION_SELF."?cat_id=0'>".$locale['405']."</a></div>\n";
echo "<td class='tbl1' style='vertical-align:top'>\n";
}
if ($res == 1) {
echo "</td>\n</tr>\n</table>\n";
} else {
echo "<center><br>\n".$locale['407']."<br><br>\n</center>\n";
}
}
echo"</td>
<td valign='top'>
Tu wpisuje się treść strony
</td>
</tr>
</table>";
closetable();
echo"
</td>
</tr>
</table><center>";
require_once "footer.php";
?>
<!--ISO-->
|
|
|
|
Grzes |
Dodany dnia 05.08.2007 15:42:57
|
Zaawansowany
Postów: 1656 Pomógł: 42
Data rejestracji: 28.04.2005 20:28
|
Nie rozumiem. W końcu o co Ci chodzi? O to że cała strona ucieka poza top? Ten tekst o którym mówimy nie chce się wycentrować? Bo w tym co pokazałeś z center nie skorzystałeś.
Często najmądrzejszą odpowiedzią jest milczenie
|
|
|
|
holohause |
Dodany dnia 06.08.2007 08:43:08
|
Początkujący
Postów: 120 Ostrzeżeń: 1
Data rejestracji: 12.07.2006 09:59
|
Dobra, to jak zrobić by zawartość od opentable do closetable była wycentrowana??
Edytowane przez holohause dnia 06.08.2007 08:51:36
|
|
|
|
Pieka |
Dodany dnia 06.08.2007 09:38:28
|
Postów: 19882 Pomógł: 767
v7.02.03 Data rejestracji: 23.02.2005 18:12
|
holohause napisał/a:
Dobra, to jak zrobić by zawartość od opentable do closetable była wycentrowana??
Wstawic odpowiednie tagi po opentable <center> i przed closetable </center>
Mozesz rowniez w pliku theme.php zdefiniowac to w konstrukcji opentable-closetable przez dodanie aling='center'
Pamietaj jednak, ze ta ostatnia metoda wysrodkuje zawartosc wszystkich opentable.
Edytowane przez Pieka dnia 06.08.2007 09:40:21
Jestem jaki jestem
|
|
|
|
holohause |
Dodany dnia 06.08.2007 13:59:17
|
Początkujący
Postów: 120 Ostrzeżeń: 1
Data rejestracji: 12.07.2006 09:59
|
Pieka rzekłbym, iż geniuś z Ciebie |
|
|