Antworten: 2
Seite [1] |
|
BlackPoint Beginner Beiträge: 1 |
# Thema - 15.04.2007 um 02:07 Uhr
Halli Hallo Ich hab da mal ein Problem. Meine Shoutbox ist eigendlich ganz okay. Hab nur das Problem das ich hier kaum ein Buchstabe erkenne. H.P. : http://blackpoint.2hp.eu/ <?php // ClanSphere 2007 - www.clansphere.net // $Id: navlist.php 314 2006-09-08 20:22:12Z duRiel $ $cs_lang = cs_translate('shoutbox'); $captcha = extension_loaded('gd') ? 1 : 0; $shoutbox_count = cs_sql_count(__FILE__,'shoutbox'); $shoutbox_options = cs_sql_option(__FILE__,'shoutbox'); $data = array(); $data['shoutbox'] = ''; $min = 0; if ($shoutbox_options['order'] == 'ASC') { $order = 'shoutbox_date ASC'; if ($shoutbox_count > $shoutbox_options['limit']) $min = $shoutbox_count - $shoutbox_options['limit']; } else $order = 'shoutbox_date DESC'; $cells = 'shoutbox_name, shoutbox_text, shoutbox_date'; $data['shoutbox'] = cs_sql_select(__FILE__,'shoutbox',$cells,0,$order,$min,$shoutbox_optio ns['limit']); $pattern = "=([^s*?]{".$shoutbox_options['linebreak']."}(?![^<]+>|[^&]*="; for ($i = 0; $i < count($data['shoutbox']); $i++) { $temp = preg_replace($pattern,"\0 ",$data['shoutbox'][$i]['shoutbox_text']); $data['shoutbox'][$i]['shoutbox_text'] = cs_secure($temp,0,1,0); $data['shoutbox'][$i]['shoutbox_name'] = cs_secure($data['shoutbox'][$i]['shoutbox_name'],0,0,0); $data['shoutbox'][$i]['shoutbox_date'] = cs_date('unix',$data['shoutbox'][$i]['shoutbox_date'],1); } $data['form']['url'] = cs_url('shoutbox','create'); $data['form']['nick'] = empty($account['users_nick']) ? 'Nick' : cs_secure($account['users_nick']); if(!empty($captcha) && empty($account['users_id'])) { $data['form']['captcha'] = cs_html_img('mods/captcha/generate.php?mini'); $data['form']['captcha'] .= cs_html_input('captcha','','text',3,3); } else { $data['form']['captcha'] = ''; } $data['url']['archieve'] = cs_url('shoutbox','list'); $data['form']['uri'] = cs_secure($_SERVER['REQUEST_URI']); echo cs_subtemplate(__FILE__,$data,'shoutbox','navlist'); ?> Nun die frage der Fragen. Wo trage ich da die Farben ein ? BITTE BITTE um hilfe. und ein Sorry das ich das hier rein Poste, aber ich wuste nicht mehr wo hin. M.f.G. : BlackPoint |
Inaktiv |
|
worstbull King for a day Beiträge: 222 |
# Antwort: 1 - 15.04.2007 um 05:49 Uhr
Die Farben trägst du hier garnicht ein. Die trägst du in einer sogenannten 'Template' Datei ein, diese befindet sich in diesem Fall in dem Ordner: themes/base/shoutbox und heisst navlist.tpl. Das Template dient dazu, eben solche Änderungen vorzunehmen. Du musst halt bei den Elementen die eine neue Farbe bekommen sollen in die entsprechenden Blockelemente (<div> oder auch <span>) hineinschreiben style="color:green;", so dass diese dann so aussehen <div style="color:green;">irgendeintextdrin</div>. Du kannst auch alternativ die Farben im Stylesheet clansphere.css ändern (templates/base bzw templates/deintemplate)! Ich hoffe ich habe dir geholfen! MF ------------------ |
Inaktiv |
|
BlackPoint Thread-Ersteller Beginner Beiträge: 1 |
# Antwort: 2 - 15.04.2007 um 13:19 Uhr
Grossen Danke Hat einwandfrei geklabt M.f.G. : BlackPoint |
Inaktiv |
|
Antworten: 2
Seite [1] |
Sie müssen sich registrieren, um zu antworten. |