Problem z theme na którym ucieka menu.
|
Much_skywoker |
Dodany dnia 07.02.2007 17:58:12
|
Przedszkolak
Postów: 19
Data rejestracji: 13.07.2006 23:33
|
Oto strona www.meblekowalczy... mam górne menu które niemogłem wyrównać. Pytałem jednego gościa ale nie pomogło...może znajdzie się ktoś kto jest na tyle genialny i zrobi coś z tym menu bo nawet mi centrowanie nie pomogło.
mój theme.php
<?
// Coffee Time Theme v1.00
// Author: Shaolin
// Web: http://shaolinsite.net/
// Please don't modify footer section of this theme.
// Link to my webpage must stay there!
// Thanks.
// theme settings
$body_text = "#fff";
$body_bg = "#4D4D4D";
$theme_width = "800";
$theme_width_l = "150";
$theme_width_r = "150";
function render_header($header_content) {
global $theme_width,$settings;
echo "<center><table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"border-collapse: collapse; background-color: #5f2613; margin-top: 0px; padding-top: 0px; text-align: right;\" width=\"800\" height=\"150\"></center>
<tr>
<td width=\"800\" height=\"100\" colspan=\"2\" style=\"background-image: url('".THEME."images/logo.jpg'); background-repeat: no-repeat;\"><h1><center>Kowalczyk & SYN</center></h1>
</tr>
<tr>siema
<td width=\"200\" height=\"25\"></td>
<td width=\"600\" height=\"25\" style=\"text-align: center; color: #e7e5cf;\">";
$result = dbquery("SELECT * FROM ".DB_PREFIX."site_links WHERE link_position>=\"2\" ORDER BY link_order");
if (dbrows($result) != 0) {
$i = 0;
while($data = dbarray($result)) {
if (checkgroup($data['link_visibility'])) {
if ($data['link_url']!="---") {
if ($i != 0) { echo "\n"; } else { echo "\n"; }
$link_target = ($data['link_window'] == "1" ? " target=\"_blank\"" : "");
if (strstr($data['link_url'], "http://") || strstr($data['link_url'], "https://")) {
echo "<a class=\"nav\" href=\"".$data['link_url']."\"".$link_target.">".$data['link_name']."</a> |";
} else {
echo "<a class=\"nav\" href=\"".BASEDIR.$data['link_url']."\"".$link_target.">".$data['link_name']."</a> |";
}
}
$i++;
}
}
}
echo "</td>
</tr>
</table>";
echo "<table width=\"800\" align=\"center\" cellspacing=\"0\" style=\"background-color: #1b0100; border-top: 2px #424040 solid;\" cellpadding=\"0\">\n<tr>\n";
}
function render_footer() {
global $theme_width,$settings,$locale;
echo "</tr>\n</table>\n";
echo "<table cellpadding=\"0\" cellspacing=\"0\" width=\"800\" align=\"center\" >
<tr>
<td class=\"stopka\">".stripslashes($settings['footer'])."<br>
".$settings['counter']." ".($settings['counter'] == 1 ? $locale['140']."<br><br>\n" : $locale['141']." | \n");
echo "Toporzysko 421 34-240 Jordanów <a href=\"http://www.php-fusion.co.uk\" target=\"_blank\" style=\"color: #fefff9; font-weight: bolder;\"></a> | (018) 28-73-299 | 602 533 067 <b><a href=\"http://shaolinsite.net\" title=\"gry online\" target=\"_blank\" style=\"color: #fefff9; font-weight: bolder;\"></a></b>\n";
echo "| Engine: <a href=\"http://www.php-fusion.co.uk\" target=\"_blank\" style=\"color: #fefff9; font-weight: bolder;\">PHP-Fusion</a> v".$settings['version']." | Coffee Time Theme by <b><a href=\"http://shaolinsite.net\" title=\"gry online\" target=\"_blank\" style=\"color: #fefff9; font-weight: bolder;\">Gry Online</a></b>\n";
echo "</td>
</tr>
</table>
</td>
</tr>
</table>\n";
}
function render_news($subject, $news, $info) {
global $locale;
echo "<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">
<tr>
<td>
<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">
<tr>
<td class=\"capmain\">» $subject</td>
</tr>
<tr>
<td class=\"news-footer\"><a href=\"profile.php?lookup=".$info['user_id']."\" class=\"news\">".$info['user_name']."</a> |
".showdate("longdate", $info['news_date'])." | ";
if ($info['news_allow_comments']) echo "<a href=\"news.php?readmore=".$info['news_id']."\" class=\"news\">".$info['news_comments'].$locale['043']."</a> |\n";
echo $info['news_reads'].$locale['044']."</td>
</tr>
<tr>
<td class=\"news-body\">
$news<br>
<div align=\"right\">".($info['news_ext'] == "y" ? "| <a href=\"news.php?readmore=".$info['news_id']."\" class=\"news\">".$locale['042']."</a> |\n" : ""); echo "</div>
</td>
</tr>
</table>
</td>
</tr>
</table>\n";
}
function render_article($subject, $article, $info) {
global $locale;
echo "<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">
<tr>
<td>
<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">
<tr>
<td class=\"capmain\">$subject</td>
</tr>
<tr>
<td class=\"main-body\">
".($info['article_breaks'] == "y" ? nl2br($article) : $article)."
</td>
</tr>
<tr>>
</td>
</tr>
</table>
</td>
</tr>
</table>\n";
}
function opentable($title) {
echo "<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">
<tr>
<td>
<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">
<tr>
<td class=\"capmain\"><img src=\"".THEME."images/capmain.gif\" style=\"vertical-align: middle;\"> $title</td>
</tr>
<tr>
<td class=\"main-body\">\n";
}
function closetable() {
echo "</td>
</tr>
</table>
</td>
</tr>
</table>\n";
}
function openside($title) {
echo "<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" class=\"border\">
<tr>
<td>
<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">
<tr>
<td class=\"scapmain\">$title</td>
</tr>
<tr>
<td class=\"side-body\">\n";
}
function closeside() {
echo "</td>
</tr>
</table>
</td>
</tr>
</table>\n";
tablebreak();
}
function opensidex($title,$open="on") {
if($open=="on"){$box_img="off";}else{$box_img="on";}
echo "<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\" class=\"border\">
<tr>
<td>
<table width=\"100%\" cellpadding=\"0\" cellspacing=\"0\">
<td class=\"scapmain\">$title</td>
<td class=\"scapmain\" align=\"right\">
<img onclick=\"javascript:flipBox(\"$title\")\" name=\"b_$title\" border=\"0\" src=\"".THEME."images/panel_$box_img.gif\">
</td>
</tr>
<tr>
<td colspan=\"2\" class=\"side-body\">
<div id=\"box_$title\""; if($open=="off"){ echo "style=\"display:none\""; } echo ">\n";
}
function closesidex() {
echo "</div>
</td>
</tr>
</table>
</td>
</tr>
</table>\n";
tablebreak();
}
function tablebreak() {
echo "<table width=\"100%\" cellspacing=\"0\" cellpadding=\"0\">
<tr><td height=\"8\"></td></tr>
</table>\n";
}
?>
A tu są style.css
a { color:#79492d; text-decoration:none; }
a:hover { color:#79492d; text-decoration:underline; }
a.side { color:#f4f3e9; text-decoration:none; }
a:hover.side { color:#f4f3e9; text-decoration:underline; }
a.white { color:#8f5e41; text-decoration:none; }
a:hover.white { color:#8f5e41; text-decoration:underline; }
a.news { color: #521703; text-decoration: none; }
a:hover.news { color: #521703; text-decoration: underline; }
a.nav{ color: #e7e5cf; text-decoration: none; font-weight: bold; }
a:hover.nav { color: #e7e5cf; text-decoration: underline; font-weight: bold; }
.stopka {
background-color: #5f2613;
border-top: 2px #4b1907 solid;
color: #d9ceca;
font-size: 9pt;
padding: 5px;
text-align: center;
}
body {
font-family:"trebuchet ms",Verdana,Tahoma,Arial,Sans-Serif;
font-size:10pt;
color: #6b442c;
text-align: center;
margin-bottom: 0px;
padding-bottom: 0px;
margin-top: 0px;
padding-top: 0px;
background-color: #8A7B6E;
}
h1 {
font-family: Georgia;
font-size: 26pt;
color: #6b442c;
margin-top: 2px;
padding-top: 1px;
padding-right: 7px;
margin-bottom: -5px;
}
h2 {
font-family: Georgia;
font-size: 18pt;
color: #7e5841;
margin-top: -2px;
padding-right: 7px;
}
form { margin:0px 0px 0px 0px; }
hr { height:2px; border-bottom:#fff 1px solid; border-top:#c6c7c9 1px solid; }
hr.side-hr { height:2px; border-bottom:#d4dcdf 1px solid; border-top:#b4bcbf 1px solid; }
td { font-family:"trebuchet ms",Verdana,Tahoma,Arial,Sans-Serif; font-size:11px; }
pre { font-family:Verdana,Tahoma,Arial,Sans-Serif; font-size:10px; }
.alt { color:#555; }
.button {
font-family:"trebuchet ms",Tahoma,Arial,Verdana,Sans-Serif;
font-size:11px;
color:#f2f2f2; background-color:#823811;
height:20px;
border:1px #770401 solid; margin-top:2px;
}
.textbox {
font-family:"trebuchet ms",Verdana,Tahoma,Arial,Sans-Serif;
font-size:8pt;
color:#1b0100; background-color:#d5bfab;
border:1px #cfb49d solid;
}
.main-body {
font-size:9pt;
color:#3b1102;background-color: #fefff9;
padding: 4px;
}
.news-body {
font-size:9pt;
color:#6d4029;background-color: #fefff9;
padding: 4px;
border-bottom: 1px #6a0901 dotted;
}
.side-body {
font-size:9pt;
color:#ede5d7; background-color:#1b0100; padding: 4px;
}
.capmain {
font-family: Georgia, Tahoma,Arial,Sans-Serif;
font-size:10pt; font-weight:bold;
color:#1b0100;
padding: 6px;
border-bottom: 1px #6a0901 dotted;
background-color: #d5bfab;
}
.scapmain {
font-family: Georgia, Tahoma,Arial,Sans-Serif;
font-size:9pt; font-weight:bold;
color:#d5bfab;
padding: 4px;
border-bottom: 1px #6a0901 dotted;
}
.main-bg { background-color:#fefff9; }
.border { border:0px #424040 solid; }
.side-border-right { padding:5px; border-left: 2px #424040 solid;}
.side-border-left { padding:5px; border-right: 2px #424040 solid; }
.news-footer {
font-family: Verdana,Tahoma,Arial,Sans-Serif;
font-size:11px;
color:#521703;
background-color: #ede5d7;
padding:2px 4px 4px 4px;
}
.barmain {
font-family:Verdana,Tahoma,Arial,Sans-Serif;
font-size:10px;
color:#aaa;
padding:4px 4px 4px 4px;
}
.forum {
color: #6d4029;
}
.tbl-border { background-color:#6d4029; }
.tbl { font-size:11px; padding:4px; }
.tbl1 { font-size:11px; color:#010101; background-color:#d5bfab; padding:4px; }
.tbl2 { font-size:11px; color:#f3f3f3; background-color:#6d4029; padding:4px; }
.forum-caption {
font-size:11px; font-weight:bold;
color: #6d4029; background-color:#b4ae97;
padding:2px 4px 3px 4px;
}
.quote {
color:#6e6545; background-color:#b4ae97;
padding:2px;
margin:0px 20px 0px 20px;
border:1px #b4ae97 solid;
}
.poll { height:12px; border:1px #000 solid; }
.comment-name { font-weight:bold; color:#645a38; }
.shoutboxname { font-weight:bold; color:#eeeeee; }
.shoutbox { color:#f3f3f3; }
.shoutboxdate { font-size:9px; color:#e4e4e4; }
.small { font-size:11px; font-weight:normal; }
.small2 { font-size:11px; font-weight:normal; color:#eeeeee; }
.side-small { font-size:11px; font-weight:normal; color:#516d7f; }
.side-label { background-color:#b6bec2; padding:2px; }
.gallery { padding: 16px 0px 8px 0px; }
.gallery img { border: 1px solid #ccc; filter: gray; }
.gallery:hover img { border: 1px solid red; filter: none; }
img.activegallery { border: 1px solid green; filter: none; }
Co jest w nich złego bo ja nic nie dostrzegam. (już zmieniałem linijke 10 na a:hover.nav { color: #e7e5cf; text-decoration: underline; font-weight: bold; vertical-align: center;} ale nic nie pomogło więc zwracam się z prośbą o pomoc) |
|
|
|
Wścibski Gość |
Dodany dnia 11.01.2025 16:45:20
|
Pan Kontekstualny
Postów: n^x
Data rejestracji: Zawsze
|
|
IP: localhost |
|
|
wlodekp |
Dodany dnia 07.02.2007 18:11:54
|
Weteran
Postów: 3101 Pomógł: 29
Data rejestracji: 21.05.2005 22:27
|
Chyba najgenialniej napisać do autorki, która jest także adminem na naszym forum.
|
|
|
|
Much_skywoker |
Dodany dnia 07.02.2007 18:22:39
|
Przedszkolak
Postów: 19
Data rejestracji: 13.07.2006 23:33
|
Tylko że niema teraz autora theme |
|
|
|
wlodekp |
Dodany dnia 07.02.2007 18:44:03
|
Weteran
Postów: 3101 Pomógł: 29
Data rejestracji: 21.05.2005 22:27
|
Po pierwsze usuń te siema w wierszu nawigacji potem popatrz nawigacja górna ma dwie kolumny pierwsza 200 i druga 600 linki sa wstawiane do tej 600 może wystarczy usunąć kolumnę 200 i bedzie od poczatku???
|
|
|
|
Much_skywoker |
Dodany dnia 07.02.2007 18:52:46
|
Przedszkolak
Postów: 19
Data rejestracji: 13.07.2006 23:33
|
Wszystko działa pięknie ale na mozilli a na internet explorer już przesówa się w lewo |
|
|
|
wlodekp |
Dodany dnia 07.02.2007 19:01:13
|
Weteran
Postów: 3101 Pomógł: 29
Data rejestracji: 21.05.2005 22:27
|
W ie7 i ff2 NIE popatrz jeszcze na wpis:
<td width="600" height="25" style="[b]text-align: center[/b]; color: #e7e5cf;">
to jest z kodużródłowego Twojej strony CENTER-to prawdopodobnie środkuje.
DOPISANE W EDYCJI
usunięcie kolumny nic nie daje jest jeszcze wpis colspan="2" jego należy usunąć, żeby ta kolumna niby pusta nie występowała-bedzie tylko jedna!!!
Edytowane przez Pieka dnia 07.02.2007 19:25:56
|
|
|
|
Much_skywoker |
Dodany dnia 07.02.2007 19:20:18
|
Przedszkolak
Postów: 19
Data rejestracji: 13.07.2006 23:33
|
Mógłbyś mi powiedzieć w której to linijce??? Usunąłem coś podobnego ale dalej nic może wstawisz mi całą linijkę? Gdzie jest ten wpis Colespan"2"
Edytowane przez Much_skywoker dnia 07.02.2007 19:30:51
|
|
|
|
wlodekp |
Dodany dnia 07.02.2007 19:28:34
|
Weteran
Postów: 3101 Pomógł: 29
Data rejestracji: 21.05.2005 22:27
|
// theme settings
$body_text = "#fff";
$body_bg = "#4D4D4D";
$theme_width = "800";
$theme_width_l = "150";
$theme_width_r = "150";
function render_header($header_content) {
global $theme_width,$settings;
echo "<center><table cellpadding=\"0\" cellspacing=\"0\" align=\"center\" style=\"border-collapse: collapse; background-color: #5f2613; margin-top: 0px; padding-top: 0px; text-align: right;\" width=\"800\" height=\"150\"></center>
<tr>
<td width=\"800\" height=\"100\" colspan=\"2\" style=\"background-image: url('".THEME."images/logo.jpg'); background-repeat: no-repeat;\"><h1><center>Kowalczyk & SYN</center></h1>
</tr>
<tr>siema
<td width=\"200\" height=\"25\"></td>
<td width=\"600\" height=\"25\" style=\"text-align: center; color: #e7e5cf;\">";
$result = dbquery("SELECT * FROM ".DB_PREFIX."site_links WHERE link_position>=\"2\" ORDER BY link_order");
if (dbrows($result) != 0) {
Tak mi się wydaje bo nie sprawdzam tego u siebie???
|
|
|
|
Much_skywoker |
Dodany dnia 07.02.2007 19:33:13
|
Przedszkolak
Postów: 19
Data rejestracji: 13.07.2006 23:33
|
Teraz wyskakuje takie coś jak wkleiłem twój kod
// theme settings $body_text = "#fff"; $body_bg = "#4D4D4D"; $theme_width = "800"; $theme_width_l = "150"; $theme_width_r = "150"; function render_header($header_content) { global $theme_width,$settings; echo "
siema
Kowalczyk & SYN
"; $result = dbquery("SELECT * FROM ".DB_PREFIX."site_links WHERE link_position>=\"2\" ORDER BY link_order"); if (dbrows($result) != 0) { $i = 0; while($data = dbarray($result)) { if (checkgroup($data['link_visibility'])) { if ($data['link_url']!="---") { if ($i != 0) { echo "\n"; } else { echo "\n"; } $link_target = ($data['link_window'] == "1" ? " target=\"_blank\"" : ""); if (strstr($data['link_url'], "http://") || strstr($data['link_url'], "https://")) { echo "".$data['link_name']." |"; } else { echo "".$data['link_name']." |"; } } $i++; } } } echo "
"; echo "\n\n"; } function render_footer() { global $theme_width,$settings,$locale; echo "\n
\n"; echo "
".stripslashes($settings['footer'])."
".$settings['counter']." ".($settings['counter'] == 1 ? $locale['140']."
\n" : $locale['141']." | \n"); echo "Toporzysko 421 34-240 Jordanów | (018) 28-73-299 | 602 533 067 \n"; echo "| Engine: PHP-Fusion v".$settings['version']." | Coffee Time Theme by Gry Online\n"; echo "
\n"; } function render_news($subject, $news, $info) { global $locale; echo "
» $subject
".$info['user_name']." | ".showdate("longdate", $info['news_date'])." | "; if ($info['news_allow_comments']) echo "".$info['news_comments'].$locale['043']." |\n"; echo $info['news_reads'].$locale['044']."
$news
".($info['news_ext'] == "y" ? "| ".$locale['042']." |\n" : ""); echo "
\n"; } function render_article($subject, $article, $info) { global $locale; echo "
>
$subject
".($info['article_breaks'] == "y" ? nl2br($article) : $article)."
\n"; } function opentable($title) { echo "
$title
\n"; } function closetable() { echo "
\n"; } function openside($title) { echo "
$title
\n"; } function closeside() { echo "
\n"; tablebreak(); } function opensidex($title,$open="on") { if($open=="on"){$box_img="off";}else{$box_img="on";} echo "
$title
\n"; } function closesidex() { echo "
\n"; tablebreak(); } function tablebreak() { echo "
\n"; } ?>
Fatal error: Call to undefined function: render_header() in /var/www/sites/yoyo.pl/m/e/meblekowalczyk/subheader.php on line 68
zobacz teraz na strone
Edytowane przez Much_skywoker dnia 07.02.2007 19:36:02
|
|
|
|
wlodekp |
Dodany dnia 07.02.2007 19:40:04
|
Weteran
Postów: 3101 Pomógł: 29
Data rejestracji: 21.05.2005 22:27
|
Widzę i co ?
|
|
|
|
Much_skywoker |
Dodany dnia 07.02.2007 19:43:38
|
Przedszkolak
Postów: 19
Data rejestracji: 13.07.2006 23:33
|
No ja chciałem żeby było na środku a jest że jedno jest po prawo a drugie po lewo jak mam to wycentrować. |
|
|
|
wlodekp |
Dodany dnia 07.02.2007 20:30:00
|
Weteran
Postów: 3101 Pomógł: 29
Data rejestracji: 21.05.2005 22:27
|
Wróć do pierwotnych ustawień theme i tak na szybko można regulować szerokość pierwszej kolumny 200-dobrać tak by linki były na środku np 150 musisz sprawdzić.
|
|
|