Usunięcie obramowania paneli i zmiana koloru znaków w panelu logowania
|
Meelman |
Dodany dnia 20.04.2008 11:52:40
|
Przedszkolak
Postów: 62
Data rejestracji: 12.04.2008 10:47
|
Witam.
Mam problem z odnalezieniem kawałka kodu który odpowiada za tę oto linie:
http://www.fotosi...2592b.html
Jak pozbyć się tej linii?
Mój theme.php:
<?php
if (!defined("IN_FUSION")) { header("Location: ../../index.php"); exit; }
require_once INCLUDES."theme_functions_include.php";
// theme settings
$body_text = "#444";
$body_bg = "#ff66ff";
$theme_width = "75%";
$theme_width_l = "176";
$theme_width_r = "176";
function render_header($header_content) {
global $theme_width;
echo "<table align='center' cellspacing='0' cellpadding='0' width='$theme_width' class='outer-border'>
<tr>
<td>
<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='full-header'>
<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td>$header_content</td>
</tr>
</table>
</td>
</tr>
</table>\n";
echo "<table cellpadding='0' cellspacing='0' width='100%'>\n<tr>
<td class='sub-header'>".showsublinks("·","white")."</td>
<td align='right' class='sub-header'>".showsubdate()."</td>
</tr>
</table>\n";
echo "<table cellpadding='0' cellspacing='0' width='100%'>\n<tr>\n";
}
function render_footer($license=false) {
global $theme_width,$settings;
echo "</tr>\n</table>\n";
echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td align='center' class='footer'>".stripslashes($settings['footer'])."<br>\n";
if (!$license) {
echo "Powered by <a href='http://www.php-fusion.co.uk' target='_blank'>PHP-Fusion</a> v".$settings['version']." © 2003-2005<br>\n";
} echo "<font color=Red>".showcounter()."</font><br>Theme By:<a href='http://www.phpfusion.gen.tr/profile.php?lookup=483' target='_blank'>Burak</a>|<a href='http://www.fusiontema.com' target='_blank'>FusionTema</a><br>
</td>
</tr>
</table>
</td>
</tr>
</table>\n";
}
//echo "<tr><td class='footer' align='left'>Powered by <a href='http://www.php-fusion.co.uk' target='_blank'>PHP-Fusion</a> v".$settings['version']." © 2003-2005</td><td class='footer' align='center'>".stripslashes($settings['footer'])."</td><td class='footer' align='right'>Theme By:<a href='http://www.phpfusion.gen.tr/profile.php?lookup=483' target='_blank'>Burak</a>|<a href='http://www.fusiontema.com' target='_blank'>FusionTema</a></td><br><br>\n";
function render_news($subject, $news, $info) {
echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='capmain'>$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";
}
function render_article($subject, $article, $info) {
echo "<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 align='center' class='news-footer'>\n";
echo openform("A",$info['article_id']).articleposter($info," ·").articleopts($info,"·").closeform("A",$info['article_id']);
echo "</td>
</tr>
</table>\n";
}
function opentable($title) {
echo "<table cellpadding='0' cellspacing='0' width='100%'>
<tr>
<td class='capmain'>$title</td>
</tr>
<tr>
<td class='main-body'>\n";
}
function closetable() {
echo "</td>
</tr>
</table>\n";
}
function openside($title) {
echo "<table cellpadding='0' cellspacing='0' width='100%' class='border'>
<tr>
<td align=center class='scapmain'>$title</td>
</tr>
<tr>
<td class='side-body'>\n";
}
function closeside() {
echo "</td>
</tr>
</table>\n";
tablebreak();
}
function opensidex($title,$state="on") {
$boxname = str_replace(" ", "", $title);
echo "<table cellpadding='0' cellspacing='0' width='100%' class='border'>
<tr>
<td class='scapmain'>$title</td>
<td class='scapmain' align='right'>".panelbutton($state,$boxname)."</td>
</tr>
<tr>
<td colspan='2' class='side-body'>
<div id='box_$boxname'".($state=="off"?" style='display:none'":"").">\n";
}
function closesidex() {
echo "</div>
</td>
</tr>
</table>\n";
tablebreak();
}
function tablebreak() {
echo "<table cellpadding='0' cellspacing='0' width='100%'>\n<tr>\n<td height='5'></td>\n</tr>\n</table>\n";
}
?>
Style.css:
body {
background-image : url("images/bground.jpg");
scrollbar-face-color: #4E6072;
scrollbar-highlight-color: #70879E;
scrollbar-shadow-color: #3E4B58;
scrollbar-3dlight-color: #63798D;
scrollbar-arrow-color: #D4D4D4;
scrollbar-track-color: #45525F;
scrollbar-darkshadow-color: #384654;
}
img
{
border: 0px;
}
a {
color : #000;
text-decoration : none;
}
a:hover {
color : #000;
text-decoration : underline;
}
a.side {
color : #000;
text-decoration : none;
}
a:hover.side {
color : #000;
text-decoration : underline;
}
a.white {
color : #000;
text-decoration : none;
}
a:hover.white {
color : #000;
text-decoration : underline;
}
body {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 11px;
}
form {
margin : 0px;
}
hr {
height: 0px;
border: solid #000000 px;
border-top-width: 0px;
}
hr.side-hr {
height: 0px;
border: solid #000000 0px;
border-top-width: 0px;
}
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;
}
.outer-border {
border : 0px solid #000;
}
.sub-header {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #fff;
background-image : url("images/bground.jpg");
border-top : 1px solid #000;
border-bottom : 0px solid #000;
padding : 5px;
}
.full-header {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #000;
background-image : url("images/h-bground.jpg");
padding : 10px;
}
.footer {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #333;
background-image:url("images/footback.jpg");
border : 1px solid #ccc;
padding : 5px;
}
.button {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #000;
background-color : #e6e6e6;
height : 20px;
border : 1px solid #000;
margin-top : 2px;
}
.textbox {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #fff;
background-color : #efefef;
border : 1px solid #c7c7c7;
}
.main-body {
font-size : 10px;
color : #555555;
background-image:url("images/menublok.gif");
padding : 4px;
}
.side-body {
font-size : 10px;
color : #555555;
background-image:url("images/menublok.gif");
padding : 4px;
}
.main-bg {
color : #555;
background-image:url("images/bground.jpg");
padding : 10px 5px 10px 5px;
}
.border {
border : 1px solid #e1e1e1;
}
.side-border-left {
color : #777;
background-image:url("images/bground.jpg");
padding : 10px 5px 10px 10px;
}
.side-border-right {
color : #777;
background-image:url("images/bground.jpg");
padding : 10px 10px 10px 5px;
}
.news-footer {
font-size : 10px;
color : #555;
background-image:url("images/menublok.gif");
padding : 3px 4px 4px 4px;
}
.capmain {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 20px;
font-weight : blod;
color : #7c7c7c;
background-image:url("images/bott.gif");
border-bottom : 1px solid #e1e1e1;
padding : 4px;
}
.scapmain {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
font-weight : blod;
color : #000000;
background-image:url("images/main.gif");
border-bottom : 1px solid #e1e1e1;
padding : 21px;
}
.tbl-border {
color : #555;
background-color : #FFFFFF;
}
.tbl {
font-size : 11px;
color : #555;
background-image:url("images/menublok.gif");
padding : 4px;
}
.tbl1 {
font-size : 11px;
color : #555;
background-image:url("images/menublok.gif");
padding : 4px;
}
.tbl2 {
font-size : 11px;
color : #555;
background-image:url("images/sideback2.jpg");
padding : 4px;
}
.forum-caption {
font-size : 11px;
font-weight : bold;
color : #777;
background-image:url("images/cellpic.jpg");
padding : 2px 4px 4px 4px;
}
.quote {
font-size : 11px;
color: #FFE081;
background-color: #A48553;
padding : 4px;
margin : 0px 20px 0px 20px;
border : 1px solid #efe;
}
.poll {
height : 12px;
border : 1px solid #000;
}
.comment-name {
font-weight : bold;
color : #000;
}
.shoutboxname {
font-weight : bold;
color : #334477;
}
.shoutbox {
color : #000000;
}
.shoutboxdate {
font-size : 10px;
color : #009900;
}
.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;
}
.side-label {
color : #555;
padding : 2px 2px 3px 2px;
}
2.W którym miejscu muszę edytować theme.php lub style.css aby zmienić kolor znaków w panelu logowania na np. czarny z białego?
http://www.fotosi...96953.html
Edytowane przez Pieka dnia 20.04.2008 12:15:23
|
|
|
|
Wścibski Gość |
Dodany dnia 25.11.2024 20:35:16
|
Pan Kontekstualny
Postów: n^x
Data rejestracji: Zawsze
|
|
IP: localhost |
|
|
ICEK |
Dodany dnia 20.04.2008 11:54:18
|
Bywalec
Postów: 658 Pomógł: 27
Data rejestracji: 22.09.2007 08:29
|
Znajduje się to w style.css Twojego thema lub jest to część obrazka, z którego zbudowany jest Twój panel.
Edytowane przez Pieka dnia 20.04.2008 12:15:54
|
|
|
|
Meelman |
Dodany dnia 20.04.2008 12:08:15
|
Przedszkolak
Postów: 62
Data rejestracji: 12.04.2008 10:47
|
Na pewno nie jest to część obrazka, pole w nim mam czyste jak łza
W Style.css dziękuje a można dokładniej?
Edytowane przez Pieka dnia 20.04.2008 12:16:07
|
|
|
|
Pieka |
Dodany dnia 20.04.2008 12:18:46
|
Postów: 19882 Pomógł: 767
v7.02.03 Data rejestracji: 23.02.2005 18:12
|
Za wyglad paneli bocznych odpowiada klasa scapmain:
.scapmain {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
font-weight : [color=red]blod[/color];
color : #000000;
background-image:url("images/main.gif");
border-bottom : 1px solid #e1e1e1;
padding : 21px;
}
Poza tym, masz blad w okresleniu wielkosci fontow. Ma byc bold, a nie blod.
Ta linia, o ktora pytasz, to zapewne:
border-bottom : 1px solid #e1e1e1;
Nie podajesz poprawnego adresu strony, ani nazwy theme, a kombinowac nie mam czasu.
Edytowane przez Pieka dnia 20.04.2008 12:20:37
Jestem jaki jestem
|
|
|
|
wlodekp |
Dodany dnia 20.04.2008 12:19:31
|
Weteran
Postów: 3101 Pomógł: 29
Data rejestracji: 21.05.2005 22:27
|
Tak na szybko klasy:
.capmain
.scapmain
border-bottom : 1px solid #e1e1e1;
jedna to tytuł w opentable, druga openside jesli z obu usuniesz w panelach po bokach jak i środku znikną te ramki.
Chyba moje ulubione anime?
Edytowane przez wlodekp dnia 20.04.2008 12:21:28
|
|
|
|
Meelman |
Dodany dnia 20.04.2008 12:29:29
|
Przedszkolak
Postów: 62
Data rejestracji: 12.04.2008 10:47
|
Ok wszytko poprawione, ale nadal nie mogę usunąć tych linii. Kombinowałem z px zmieniałem rozmiary ale żaden z nich nie zmienia tych linii. Zauważyłem ze maja taki sam kolor jak tło panelu czy to ma jakieś powiązanie?
@Edit: Uprzedził mnie wlodekp :) dziękuje za pomoc, tak anime dobrze kombinujesz :)
Pozbyłem się:
border-bottom : 1px solid #e1e1e1;
ale nadal mam ten linie, chyba czegoś nie zrozumiałem ;)
Mój aktualny style.css
body {
background-image : url("images/bground.jpg");
scrollbar-face-color: #4E6072;
scrollbar-highlight-color: #70879E;
scrollbar-shadow-color: #3E4B58;
scrollbar-3dlight-color: #63798D;
scrollbar-arrow-color: #D4D4D4;
scrollbar-track-color: #45525F;
scrollbar-darkshadow-color: #384654;
}
img
{
border: 0px;
}
a {
color : #000;
text-decoration : none;
}
a:hover {
color : #000;
text-decoration : underline;
}
a.side {
color : #000;
text-decoration : none;
}
a:hover.side {
color : #000;
text-decoration : underline;
}
a.white {
color : #000;
text-decoration : none;
}
a:hover.white {
color : #000;
text-decoration : underline;
}
body {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 11px;
}
form {
margin : 0px;
}
hr {
height: 0px;
border: solid #000000 px;
border-top-width: 0px;
}
hr.side-hr {
height: 0px;
border: solid #000000 0px;
border-top-width: 0px;
}
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;
}
.outer-border {
border : 0px solid #000;
}
.sub-header {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #fff;
background-image : url("images/bground.jpg");
border-top : 1px solid #000;
border-bottom : 0px solid #000;
padding : 5px;
}
.full-header {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #000;
background-image : url("images/h-bground.jpg");
padding : 10px;
}
.footer {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #333;
background-image:url("images/footback.jpg");
border : 1px solid #ccc;
padding : 5px;
}
.button {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #000;
background-color : #e6e6e6;
height : 20px;
border : 1px solid #000;
margin-top : 2px;
}
.textbox {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
color : #fff;
background-color : #efefef;
border : 1px solid #c7c7c7;
}
.main-body {
font-size : 10px;
color : #555555;
background-image:url("images/menublok.gif");
padding : 4px;
}
.side-body {
font-size : 10px;
color : #555555;
background-image:url("images/menublok.gif");
padding : 4px;
}
.main-bg {
color : #555;
background-image:url("images/bground.jpg");
padding : 10px 5px 10px 5px;
}
.border {
border : 1px solid #e1e1e1;
}
.side-border-left {
color : #777;
background-image:url("images/bground.jpg");
padding : 10px 5px 10px 10px;
}
.side-border-right {
color : #777;
background-image:url("images/bground.jpg");
padding : 10px 10px 10px 5px;
}
.news-footer {
font-size : 10px;
color : #555;
background-image:url("images/menublok.gif");
padding : 3px 4px 4px 4px;
}
.capmain {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 20px;
font-weight : blod;
color : #7c7c7c;
background-image:url("images/bott.gif");
padding : 4px;
}
.scapmain {
font-family : Verdana, Arial, Helvetica, sans-serif;
font-size : 10px;
font-weight : bold;
color : #000000;
background-image:url("images/main.gif");
padding : 21px;
}
.tbl-border {
color : #555;
background-color : #FFFFFF;
}
.tbl {
font-size : 11px;
color : #555;
background-image:url("images/menublok.gif");
padding : 4px;
}
.tbl1 {
font-size : 11px;
color : #555;
background-image:url("images/menublok.gif");
padding : 4px;
}
.tbl2 {
font-size : 11px;
color : #555;
background-image:url("images/sideback2.jpg");
padding : 4px;
}
.forum-caption {
font-size : 11px;
font-weight : bold;
color : #777;
background-image:url("images/cellpic.jpg");
padding : 2px 4px 4px 4px;
}
.quote {
font-size : 11px;
color: #FFE081;
background-color: #A48553;
padding : 4px;
margin : 0px 20px 0px 20px;
border : 1px solid #efe;
}
.poll {
height : 12px;
border : 1px solid #000;
}
.comment-name {
font-weight : bold;
color : #000;
}
.shoutboxname {
font-weight : bold;
color : #334477;
}
.shoutbox {
color : #000000;
}
.shoutboxdate {
font-size : 10px;
color : #009900;
}
.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;
}
.side-label {
color : #555;
padding : 2px 2px 3px 2px;
}
Dla Pieki:
Strona: http://seriale.bo...
Theme który edytuje to: Chronicles
Edytowane przez Meelman dnia 20.04.2008 12:54:39
|
|
|
|
wlodekp |
Dodany dnia 20.04.2008 12:55:14
|
Weteran
Postów: 3101 Pomógł: 29
Data rejestracji: 21.05.2005 22:27
|
Pokaż to na stronie wtedy widzę(żródło) kod jaki to ładuje, to co wcześniej napisałem dotyczyło obramowania w tytułach paneli, a nie samych paneli, dodatkowo widzę obrazki ładowane jako tła to co Koledzy wspominali wyżej.
Sądzę, że stopkę php-fusion posiadasz , może zmienie wtedy zdanie o moich "Ulubieńcach" z anime.
|
|
|
|
Pieka |
Dodany dnia 20.04.2008 13:04:29
|
Postów: 19882 Pomógł: 767
v7.02.03 Data rejestracji: 23.02.2005 18:12
|
Zamien w pliku themes.php z:
echo "<table cellpadding='0' cellspacing='0' width='100%' [b]class='border'[/b]>
Na:
echo "<table cellpadding='0' cellspacing='0' width='100%' border='0'>
Lub w pliku styles.css zmien klase z:
.border {
border : 1px solid #e1e1e1;
}
Na:
.border {
border : 0px;
}
Edytowane przez Pieka dnia 20.04.2008 13:06:52
Jestem jaki jestem
|
|
|
|
Meelman |
Dodany dnia 20.04.2008 13:13:27
|
Przedszkolak
Postów: 62
Data rejestracji: 12.04.2008 10:47
|
Dziękuje wszystkim za pomoc.
Pieka zrobiłem tak jak napisałeś w themes.php wszystko ładnie chodzi.
Serdeczne dzięki |
|
|