Hi, ich habe folgendes Problem mit einem Template. es geht um die Webseite: http://www.eolithix-network.w4f.eu
Wie man sieht sind dort rechts beim Tournamentcenter 3 Spiele die irgendwie ohne style angezeigt werden. Es soll eigentlich so aussehen wie oben "Matches".
Was ich gemacht habe ist:
In der style.css:
Code
/* ###################################################### */
/* ##################### matches BOX #################### */
/* ###################################################### */
div#matches { margin:-14px 5px -14px 5px;}
div#matches ul { list-style:none; color:#82abc1; padding:0; }
div#matches ul li { float:left; clear:both; height:52px; position:relative; width:314px;}
div#matches ul li img { position:absolute; left:4px; top:5px; }
div#matches ul li a,div#matches ul li span.result { color:#01426e; }
div#matches ul li strong { position:absolute; left:52px; top:10px; font-size:14px; }
div#matches ul li span.league { position:absolute; left:52px; top:26px; font-size:12px; font-weight:bold; }
div#matches ul li span.result { position:absolute; right:0px; top:15px; font-size:16px; font-weight:bold; width:66px; display:block; text-align:center; }
.sc_squad_results { display: none; width: 323px; overflow: hidden; }
#squad_1 { display: block; }
div#matches .no_text { padding: 19px 9px 9px 10px; line-height: 13px; }
Alles anzeigen
(das ist der code von der Matches Box)
Kopiert, eingefügt und abgeändert in
Code
/* ###################################################### */
/* ##################### tournament BOX #################### */
/* ###################################################### */
div#tournament { margin:-14px 5px -14px 5px;}
div#tournament ul { list-style:none; color:#82abc1; padding:0; }
div#tournament ul li { float:left; clear:both; height:52px; position:relative; width:314px;}
div#tournament ul li img { position:absolute; left:4px; top:5px; }
div#tournament ul li a,div#tournament ul li span.result { color:#01426e; }
div#tournament ul li strong { position:absolute; left:52px; top:10px; font-size:14px; }
div#tournament ul li span.league { position:absolute; left:52px; top:26px; font-size:12px; font-weight:bold; }
div#tournament ul li span.result { position:absolute; right:0px; top:15px; font-size:16px; font-weight:bold; width:66px; display:block; text-align:center; }
.sc_squad_results { display: none; width: 323px; overflow: hidden; }
#squad_1 { display: block; }
div#tournament .no_text { padding: 19px 9px 9px 10px; line-height: 13px; }
Alles anzeigen
In der index.php habe ich dann
PHP
<div class="matches_head">
<h2 class="hidden">Matchticker</h2>
<a href="index.php?site=clanwars" id="war_more"></a> </div>
<div class="box">
<div class="box_head"></div>
<div id="matches">
<?php include("sc_results.php"); ?>
</div>
<div class="box_foot"></div>
</div>
kopiert, eingefügt und abgeändert in:
PHP
<div class="tournament_head">
<h2 class="hidden">tournamentcenter</h2>
<a href="index.php?site=scene_clanwars" id="war_more"></a> </div>
<div class="box">
<div class="box_head"></div>
<div id="tournament">
<?php include("sc_scene_results.php"); ?>
</div>
<div class="box_foot"></div>
</div>
Leider werden die matches irgendwie ohne style angezeigt. Ich weiß echt nicht weiter. Versuche nun seit Tagen das irgendwie hinzubekommen, ohne erfolg wie man auf meiner Seite sehen kann.