Demo

Probiere ClanSphere aus und teste daran herum. Demo


Antworten: 23
Seite [1] 2 >
Beenox


Rock the board





Beiträge: 47
# Thema - 14.04.2012 um 18:06 Uhr
Hallo Community. Zuerst einmal ich benutze Template 5 von FX-Interfaces. Da leider kein Support kommt, versuche ich es hier. Ich habe eine Latest Wars Box angelegt (HTML) und soweit funktioniert die auch. Nun hat aber das Ergebniss das dort angezeigt wird einen Grausigen Schwarzen Hintergrund welchen ich nicht wegbekomme. Wenn ich eine Grafik darunter lege wird die auch überdeckt.

Link zur Homepage ist dieser http://k-society.de

Der Code von der Wars Navlist sieht so aus ...

 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
1. / 2. / ... 
<?php
// ClanSphere 2010 - www.clansphere.net
// $Id$

$cs_lang cs_translate('wars');
$cs_get cs_get('catid,squadid');
$cs_option cs_sql_option(__FILE__,'wars');
$data = array();

$select 'war.games_id AS games_id, cln.clans_short AS clans_short, war.wars_score1 AS wars_score1, '
        
'war.wars_score2 AS wars_score2, war.wars_date AS wars_date, war.wars_id AS wars_id';
$from 'wars war INNER JOIN {pre}_clans cln ON war.clans_id = cln.clans_id';
$order 'war.wars_date DESC';
$where = empty($cs_get['squadid']) ? 'war.wars_status = \'played\'' 'war.wars_status = \'played\' AND war.squads_id = ' $cs_get['squadid'];
if(!empty(
$cs_get['catid'])) {
  
$where .= ' AND war.categories_id = ' $cs_get['catid'];
}

$cs_wars cs_sql_select(__FILE__,$from,$select,$where,$order,0,$cs_option['max_navlist']);

if (!empty(
$cs_wars)) {

  if(
$cs_option['max_navlist'] == 1)
    
$cs_wars = array(=> $cs_wars);

  
$all count($cs_wars);
  for (
$i 0$i $all$i++) {

    
$cs_wars[$i]['game_icon'] = file_exists('uploads/games/' $cs_wars[$i]['games_id'] . '.gif') ?
      
cs_html_img('uploads/games/' $cs_wars[$i]['games_id'] . '.gif') : '';
    
$secure_short cs_secure($cs_wars[$i]['clans_short']);
    
$cs_wars[$i]['enemy'] = cs_link($secure_short,'wars','view','id=' $cs_wars[$i]['wars_id']);

    
$result $cs_wars[$i]['wars_score1'] - $cs_wars[$i]['wars_score2'];
    
$icon $result 'green' 'red';
    if(empty(
$result)) $icon 'grey';
    
$cs_wars[$i]['icon'] = cs_html_img('symbols/clansphere/' $icon '.gif');

    
$cs_wars[$i]['date'] = cs_date('unix',$cs_wars[$i]['wars_date']);
  }

  
$data['wars'] = $cs_wars;
  echo 
cs_subtemplate(__FILE__,$data,'wars','navlist');
}
else
  echo 
$cs_lang['no_data'];


------------------
Inaktiv
Koffein


Going for pro




Beiträge: 536
# Antwort: 1 - 14.04.2012 um 19:55 Uhr
Du musst dazu die navlist.tpl des WarModuls bearbeiten!
/themes/base/wars/navlist.tpl

Am besten fügst du das ganze unter /themes/base/custom ein, oder falls du ein eigenes aktiviertes Theme hast dort. So erhält man sich immer die Orginal-Dateien


Inaktiv
|
Beenox
Thread-Ersteller


Rock the board





Beiträge: 47
# Antwort: 2 - 14.04.2012 um 20:14 Uhr
Wenn ich das jetzt mal könnte. Meine PHP Kenntnisse sind arg begrenzt


------------------


Inaktiv
|
ev0lution


Geekboy





Beiträge: 1102
# Antwort: 3 - 14.04.2012 um 21:03 Uhr
der schwarze hintergrund ist doch in seiner http://tbc-clan.net/ks/templates/fx5/layout.css hinterlegt

body, td, th {
font-family: Verdana, Geneva, sans-serif;
font-size: 10px;
background-color: black;
background-image: url(layout/bgtop.jpg);
background-position: top center;
background-repeat: no-repeat;

muss dort nicht einfach das background-color: black; weg ?


------------------


Inaktiv
|
Beenox
Thread-Ersteller


Rock the board





Beiträge: 47
# Antwort: 4 - 14.04.2012 um 21:09 Uhr
Nein das ist die Farbe für Page Hintergrund falls die Background Grafik zu klein ist


------------------


Inaktiv
|
sgraewe ClanSphere Team

Supporter
Supporter




Beiträge: 6116
# Antwort: 5 - 14.04.2012 um 21:11 Uhr
jo + den tds und ths also hat waq da schon recht


Inaktiv
|
ev0lution


Geekboy





Beiträge: 1102
# Antwort: 6 - 14.04.2012 um 21:12 Uhr
mach dat dochmal grau


------------------


Inaktiv
|
Beenox
Thread-Ersteller


Rock the board





Beiträge: 47
# Antwort: 7 - 14.04.2012 um 21:15 Uhr
Wenn ich die Background hintergrundfarbe lösche habe ich immer noch in den Last Wars die Schwarze scheiße. Meine Layout.Css sieht so aus ...


mehr... +-
 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
47.
48.
49.
50.
51.
52.
53.
54.
55.
56.
57.
58.
59.
60.
61.
62.
63.
64.
65.
66.
67.
68.
69.
70.
71.
72.
73.
74.
75.
76.
77.
78.
79.
80.
81.
82.
83.
84.
85.
86.
87.
88.
89.
90.
91.
92.
93.
94.
95.
96.
97.
98.
99.
100.
101.
102.
103.
104.
105.
106.
107.
108.
109.
110.
111.
112.
113.
114.
115.
116.
117.
118.
119.
120.
121.
122.
123.
124.
125.
126.
127.
128.
129.
130.
131.
132.
133.
134.
135.
136.
137.
138.
139.
140.
141.
142.
143.
144.
145.
146.
147.
148.
149.
150.
151.
152.
153.
154.
155.
156.
157.
158.
159.
160.
161.
162.
163.
164.
165.
166.
167.
168.
169.
170.
171.
172.
173.
174.
175.
176.
177.
178.
179.
180.
181.
182.
183.
184.
185.
186.
187.
188.
189.
190.
191.
192.
193.
194.
195.
196.
197.
198.
199.
200.
201.
202.
203.
204.
205.
206.
207.
208.
209.
210.
211.
212.
213.
214.
215.
216.
217.
218.
219.
220.
221.
222.
223.
224.
225.
226.
227.
228.
229.
230.
231.
232.
233.
234.
235.
236.
237.
238.
239.
240.
241.
242.
243.
244.
245.
246.
247.
248.
249.
250.
251.
252.
253.
254.
255.
256.
257.
258.
259.
260.
261.
262.
263.
264.
265.
266.
267.
268.
269.
270.
271.
272.
273.
274.
275.
276.
277.
278.
279.
280.
281.
282.
283.
284.
285.
286.
287.
288.
289.
290.
291.
292.
293.
294.
295.
296.
297.
298.
299.
300.
301.
302.
303.
304.
305.
306.
307.
308.
309.
310.
311.
312.
313.
314.
315.
316.
317.
318.
319.
320.
321.
322.
323.
324.
325.
326.
327.
328.
329.
330.
331.
332.
333.
334.
335.
336.
337.
338.
339.
340.
341.
342.
343.
344.
345.
346.
347.
348.
349.
350.
351.
352.
353.
354.
355.
356.
357.
358.
359.
360.
361.
362.
363.
364.
365.
366.
367.
368.
369.
370.
371.
372.
373.
374.
375.
376.
377.
378.
379.
380.
381.
382.
383.
384.
385.
386.
387.
388.
389.
390.
391.
392.
393.
394.
395.
396.
397.
398.
399.
400.
401.
402.
403.
404.
405.
406.
407.
408.
409.
410.
411.
412.
413.
414.
415.
416.
417.
418.
419.
420.
421.
422.
423.
424.
425.
426.
427.
428.
429.
430.
431.
432.
433.
434.
435.
436.
437.
438.
439.
440.
441.
442.
443.
444.
445.
446.
447.
448.
449.
450.
451.
452.
453.
454.
455.
456.
457.
458.
459.
460.
461.
462.
463.
464.
465.
466.
467.
468.
469.
470.
471.
472.
473.
474.
475.
476.
477.
478.
479.
480.
481.
482.
483.
484.
485.
486.
487.
488.
489.
490.
491.
492.
493.
494.
495.
496.
497.
498.
499.
500.
501.
502.
503.
504.
505.
506.
507.
508.
509.
510.
511.
512.
513.
514.
515.
516.
517.
518.
519.
520.
521.
522.
523.
524.
525.
526.
527.
528.
529.
530.
531.
532.
533.
534.
535.
536.
537.
538.
539.
540.
541.
542.
543.
544.
545.
546.
547.
548.
549.
550.
551.
552.
553.
554.
555.
556.
557.
558.
559.
560.
561.
562.
563.
564.
565.
566.
567.
568.
569.
570.
571.
572.
573.
574.
575.
576.
577.
578.
579.
580.
1. / 2. / ... 
 @charset "utf-8";
/* CSS Document */

body,td,th {
    
font-familyVerdanaGenevasans-serif;
    
font-size10px;
    
background-color:#000;
    
background-image:url(layout/bgtop.jpg);
    
background-position:top center;
    
background-repeat:no-repeat;
    
    
}

body {
    
margin-left0px;
    
margin-top0px;
    
margin-right0px;
    
margin-bottom0px;
}
#usermenulayer {
    
position:absolute;
    
width:357px;
    
height:169px;
    
z-index:1002;
    
left709px;
    
top28px;
}
#loginbtn_image{
    
background-image:url(layout/loginbtn.png); 
    
width:70px
    
height:17px
    
border:0;
}
#layout {
    
width:1130px;
    
min-height:1500px;
    
position:relative;
    
margin:auto;    
}
#centerbox {
    
position:absolute;
    
width:711px;
    
height:auto;
    
z-index:999;
    
left215px;
    
top249px;
}

#centerbox_top {    
    
background-image:url(layout/centerbox_r1_c1.png);
    
height:27px;
    
position:relative;
}
#centerbox_middle {    
    
background-image:url(layout/centerbox_r2_c1.png);
    
height:auto;
    
min-height:1350px;
    
overflow:hidden;
    
position:relative;
}
#centerbox_foot {    
    
background-image:url(layout/centerbox_r3_c1.png);
    
height:25px;
    
position:relative;
}
#sidebar_left {
    
position:absolute;
    
overflow:hidden;
    
width:217px;
    
height:auto;
    
z-index:2;
    
left10px;
    
top270px;
}
.
sidebar_left_top {
    
background-image:url(layout/sidebar_left_r1_c1.png);
    
position:relative;
    
height:51px;    
}

.
sidebar_left_mid {
    
background-image:url(layout/sidebar_left_r2_c1.png);
    
height:auto;
    
min-height:151px;
    
overflow:hidden;
    
position:relative;    
    
background-repeat:repeat-y;
}

.
sidebar_left_mid2 {
    
background-image:url(layout/sidebar_left_r2_c1.png);
    
height:auto;
           
min-height:351px;
    
overflow:hidden;
    
position:relative;    
    
background-repeat:repeat-y;
}
.
sidebar_left_foot {
    
background-image:url(layout/sidebar_left_r5_c1.png);
    
height:30px;;
    
position:relative;    
}

.
sidebar_left_content {
    
margin-left:30px;
    
margin-right:20px;    
    
color:#FFF;
    
margin-bottom:10px;
}
.
sidebar_right_content {
    
margin-left:20px;
    
margin-right:30px;    
    
color:#FFF;
    
padding-bottom:10px;
}

.
sidebar_right_content a{    
    
color:#ccc;
    
font-weight:bold;
    
text-decoration:none;
}

.
sidebar_right_content a:hover{    
    
color:#fff;
    
font-weight:bold;
    
text-decoration:none;
}
#sidebar_right {
    
position:absolute;
    
width:216px;
    
height:547px;
    
z-index:3;
    
left909px;
    
top270px;
}
.
sidebar_right_top {
    
background-image:url(layout/sidebar_right_r1_c1.png);
    
height:49px;
    
position:relative;    
}
.
sidebar_right_mid {
    
background-image:url(layout/sidebar_right_r2_c1.png);
    
height:auto;
    
min-height:151px;
    
position:relative;    
    
overflow:hidden;
}
.
sidebar_right_foot {
    
background-image:url(layout/sidebar_right_r5_c1.png);
    
height:23px;
    
position:relative;    
}

#loginlayer {
    
background-image:url(layout/login.png);
    
position:absolute;
    
width:344px;
    
height:151px;
    
z-index:1000;
    
left8px;
    
top4px;
}
#logolayer {
    
background-image:url(layout/logo.png);
    
position:absolute;
    
width:536px;
    
height:260px;
    
z-index:1;
    
left26px;
    
top1px;
}
#navigationlayer {
    
position:absolute;
    
width:730px;
    
height:43px;
    
z-index:1001;
    
left217px;
    
top212px;
}

#navigationlayer ul{
    
margin:0px;
    
height:0px;
    
padding:0px;
    list-
style:none;
}

#navigationlayer ul li{
    
background-image:url(layout/navbtn.png);
    
margin:0px;
    
float:left;
    
width:87px;
    
height:13px;    
    
position:relative;
    
padding:15px;
    
color:#fff;
}

#navigationlayer ul li a{
    
color:#fff;
    
font-weight:bold;
    
font-size:12px;
    
text-decoration:none;
}

#navigationlayer ul li a:hover{
    
color:#ccc;
    
font-weight:bold;
    
font-size:12px;
    
text-decoration:none;
}

#subnavigation ul li a{
    
color:#eee;
    
font-weight:bold;
    
font-size:12px;
    
text-decoration:none;
}

#subnavigation ul li a:hover{
    
color:#eee;
    
font-weight:bold;
    
font-size:12px;
    
text-decoration:none;
}

#subnavigation {
    
}

#subnavigation ul{
    
margin:0px;
    
height:0px;
    
padding:0px;
    list-
style:none;
    
}

#subnavigation ul li{
    
background-image:url(layout/navbtn.png);
    
margin:0px;
    
float:left;
    
width:85px;
    
height:13px;    
    
position:relative;
    
padding:15px;
    
color:#CCC;
    
}

.
sidebar_left_mid ul{
    
margin:0px;
    
height:0px;
    
padding:0px;
    
margin-left:25px;
    list-
style:none;
}

.
sidebar_left_mid ul li{
    
background-image:url(layout/sidenavbox.png);
    
padding-top:5px;
    
padding-left:20px;
    
width:157px;
    
height:22px;    
    
color:#FFF;
}

.
sidebar_left_mid ul li a{    
    
color:#ccc;
    
font-weight:bold;
    
text-decoration:none;
}

.
sidebar_left_mid ul li a:hover{    
    
color:#eee;
    
font-weight:bold;
    
text-decoration:none;
}

.
contentlayout {
    
margin-left:20px;
    
margin-right:5px;    
    
margin-bottom:10px;
    
overflow:hidden;
}

.
newsbox {
    
background-image:url(layout/newsbox.png);
    
width:333px;
    
height:204px;
    
float:left;
    
position:relative;    
    
margin-right:10px;
    
margin-bottom:5px;
    
color:#fff;
}

.
newsbox a{
    
color:#fff;
    
text-decoration:none;
    
font-weight:bold;
}

.
newsbox a:hover{
    
color:#ccc;
    
text-decoration:none;
    
font-weight:bold;
}
.
rmorelayer {
    
position:absolute;
    
width:71px;
    
height:15px;
    
z-index:1;
    
left157px;
    
top178px;
    
color:#FFF;
    
font-weight:bold;
}
.
commentlayer {
    
position:absolute;
    
width:63px;
    
height:15px;
    
z-index:2;
    
left248px;
    
top177px;
    
color:#FFF;
    
font-weight:bold;
}

.
topics {
    
position:relative;
    
width:676px;    
}

.
topics_head {
    
background-image:url(layout/topics_r1_c1.png);
    
height:46px;    
}

.
topics_articles_head {
    
background-image:url(layout/toparticles_r1_c1.png);
    
height:46px;    
}

.
topics_mid {
    
background-image:url(layout/topics_r2_c1.png);
    
height:auto;
    
min-height:100px;    
    
overflow:hidden;
}

.
topics_foot {
    
background-image:url(layout/topics_r3_c1.png);
    
height:21px;    
}
.
topic_entry {
    
background-image:url(layout/topic_entry.png);
    
width:655px;
    
height:49px;
    
margin-left:0px;
    
margin-bottom:5px;
    
position:relative;    
}

.
topic_headtext {
    
position:absolute;
    
width:613px;
    
height:13px;
    
z-index:1;
    
top5px;
    
left8px;
    
color:#666;
    
font-weight:bold;
}
.
topic_entrytext {
    
position:absolute;
    
width:613px;
    
height:16px;
    
z-index:2;
    
left7px;
    
top28px;
    
color:#999;
    
font-weight:bold;
}

.
useronlinelayer {
    
position:relative;
    
background-image:url(layout/onlineusers.png);
    
width:461px;
    
height:203px;
    
float:left;
}
#onlineusers {
    
position:absolute;
    
width:192px;
    
height:115px;
    
z-index:1;
    
left11px;
    
top37px;
    
color:#CCC;
}
#randomuser {
    
position:absolute;
    
width:200px;
    
height:116px;
    
z-index:1;
    
left233px;
    
top37px;
    
color:#CCC;
}
.
randomimage {
    
background-image:url(layout/randomimage.png);
    
width:213px;
    
height:203px;
    
float:left;    
    
margin-left:3px;
    
position:relative;
}
#randomgallery {
    
position:absolute;
    
width:179px;
    
height:131px;
    
z-index:1;
    
left18px;
    
top37px;
    
color:#CCC;
}

.
topentry {
    
background-image:url(layout/topentry.png);
    
width:322px;
    
height:49px;
    
margin-bottom:5px;
    
position:relative;    
}
.
topentry1 {
    
position:absolute;
    
width:310px;
    
height:17px;
    
z-index:1;
    
top5px;
    
left5px;
    
color:#666;
    
font-weight:bold;
}
.
topentry2 {
    
position:absolute;
    
width:312px;
    
height:19px;
    
z-index:2;
    
left5px;
    
top27px;
    
font-weight:bold;
    
color:#999;
}
#usernamelayer {
    
position:absolute;
    
width:167px;
    
height:30px;
    
z-index:1;
    
left5px;
    
top61px;
}
#passwordlayer {
    
position:absolute;
    
width:164px;
    
height:33px;
    
z-index:2;
    
left177px;
    
top61px;
}
#loginbtnlayer {
    
position:absolute;
    
width:84px;
    
height:22px;
    
z-index:3;
    
left169px;
    
top115px;
}
#communitybtnlayer {
    
position:absolute;
    
width:83px;
    
height:23px;
    
z-index:4;
    
left259px;
    
top114px;
}
#cbtnlayer {
    
position:absolute;
    
width:82px;
    
height:23px;
    
z-index:8;
    
left260px;
    
top114px;
}

.
newstitlelayer {
    
position:absolute;
    
width:297px;
    
height:19px;
    
z-index:5;
    
left17px;
    
top3px;
}

#usermenulayer {
    
color:#FFF;    
}

#usermenulayer a{
    
color:#ccc;    
    
text-decoration:none;
}

#usermenulayer a:hover{
    
color:#FFF;    
}
#saveloginlayer {
    
position:absolute;
    
width:22px;
    
height:16px;
    
z-index:5;
    
left101px;
    
top99px;
}
#registerlayer {
    
position:absolute;
    
width:137px;
    
height:18px;
    
z-index:6;
    
left2px;
    
top116px;
}
#resetpwlayer {
    
position:absolute;
    
width:120px;
    
height:20px;
    
z-index:7;
    
left5px;
    
top131px;
}

#copyright {
    
position:absolute;
    
width:182px;
    
height:26px;
    
z-index:1003;
    
left925px;
    
top234px;
}
.
newspicdiv {
    
position:absolute;
    
width:299px;
    
height:56px;
    
z-index:3;
    
left17px;
    
top29px;
}
.
newstextdiv {
    
position:absolute;
    
width:301px;
    
height:61px;
    
z-index:4;
    
left16px;
    
top105px;
    
overflow:hidden;
}
.
boxtitel {
    
position:absolute;
    
width:147px;
    
height:18px;
    
z-index:1;
    
left28px;
    
top5px;
    
color:#FFF;
    
font-size:14px;
    
font-weight:bold;
}


------------------


Zuletzt editiert von equaL ClanSphere Team am 14.04.2012 um 22:32 Uhr (1x Editiert)
Inaktiv
|
ev0lution


Geekboy





Beiträge: 1102
# Antwort: 8 - 14.04.2012 um 21:20 Uhr
änder mal

background-color:#000; ab unter body,td,th {

dann cache leeren und ansehen ^^


------------------


Zuletzt editiert von ²waq am 14.04.2012 um 21:21 Uhr (1x Editiert)
Inaktiv
|
Beenox
Thread-Ersteller


Rock the board





Beiträge: 47
# Antwort: 9 - 14.04.2012 um 21:26 Uhr
Habs jetzt auf weiss geändert als Test aber schaut selbst.

Aufgerufen wird der CSS befehl .sidebar_right_content

Vielleicht hilft das


------------------


Zuletzt editiert von Beenox am 14.04.2012 um 21:32 Uhr (1x Editiert)
Inaktiv
|
ev0lution


Geekboy





Beiträge: 1102
# Antwort: 10 - 14.04.2012 um 21:35 Uhr
poste mal bitte die navlist.tpl


------------------


Inaktiv
|
Beenox
Thread-Ersteller


Rock the board





Beiträge: 47
# Antwort: 11 - 14.04.2012 um 21:36 Uhr
 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
25.
26.
27.
28.
29.
30.
31.
32.
33.
34.
35.
36.
37.
38.
39.
40.
41.
42.
43.
44.
45.
46.
1. / 2. / ... 
<?php
// ClanSphere 2010 - www.clansphere.net
// $Id$

$cs_lang cs_translate('wars');
$cs_get cs_get('catid,squadid');
$cs_option cs_sql_option(__FILE__,'wars');
$data = array();

$select 'war.games_id AS games_id, cln.clans_short AS clans_short, war.wars_score1 AS wars_score1, '
        
'war.wars_score2 AS wars_score2, war.wars_date AS wars_date, war.wars_id AS wars_id';
$from 'wars war INNER JOIN {pre}_clans cln ON war.clans_id = cln.clans_id';
$order 'war.wars_date DESC';
$where = empty($cs_get['squadid']) ? 'war.wars_status = \'played\'' 'war.wars_status = \'played\' AND war.squads_id = ' $cs_get['squadid'];
if(!empty(
$cs_get['catid'])) {
  
$where .= ' AND war.categories_id = ' $cs_get['catid'];
}

$cs_wars cs_sql_select(__FILE__,$from,$select,$where,$order,0,$cs_option['max_navlist']);

if (!empty(
$cs_wars)) {

  if(
$cs_option['max_navlist'] == 1)
    
$cs_wars = array(=> $cs_wars);

  
$all count($cs_wars);
  for (
$i 0$i $all$i++) {

    
$cs_wars[$i]['game_icon'] = file_exists('uploads/games/' $cs_wars[$i]['games_id'] . '.gif') ?
      
cs_html_img('uploads/games/' $cs_wars[$i]['games_id'] . '.gif') : '';
    
$secure_short cs_secure($cs_wars[$i]['clans_short']);
    
$cs_wars[$i]['enemy'] = cs_link($secure_short,'wars','view','id=' $cs_wars[$i]['wars_id']);

    
$result $cs_wars[$i]['wars_score1'] - $cs_wars[$i]['wars_score2'];
    
$icon $result 'green' 'red';
    if(empty(
$result)) $icon 'grey';
    
$cs_wars[$i]['icon'] = cs_html_img('symbols/clansphere/' $icon '.gif');

    
$cs_wars[$i]['date'] = cs_date('unix',$cs_wars[$i]['wars_date']);
  }

  
$data['wars'] = $cs_wars;
  echo 
cs_subtemplate(__FILE__,$data,'wars','navlist');
}
else
  echo 
$cs_lang['no_data'];


------------------


Inaktiv
|
ev0lution


Geekboy





Beiträge: 1102
# Antwort: 12 - 14.04.2012 um 21:42 Uhr
ne die .tpl aus dem themes verzeichniss


------------------


Inaktiv
|
Beenox
Thread-Ersteller


Rock the board





Beiträge: 47
# Antwort: 13 - 14.04.2012 um 21:49 Uhr
 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
1. / 2. / ... 
 <table style="width:100%; overflow:hidden" cellpadding="0" cellspacing="0" >
 {
loop:wars}
 <
tr>
  <
td background-color:transparent; class="left">{wars:game_icon}</td>
  <
td background-color:transparent; class="left">{wars:enemy}</td>
  <
td background-color:transparent; class="right">{wars:wars_score1}</td>
  <
td background-color:transparent; class="center">:</td>
  <
td class="left">{wars:wars_score2}</td>
  <
td class="left">{wars:icon}</td>
 </
tr>
 {
stop:wars}
</
table>


------------------


Inaktiv
|
ev0lution


Geekboy





Beiträge: 1102
# Antwort: 14 - 14.04.2012 um 22:07 Uhr
also das td background-color:transparent; ist schonmal unsinnig ^^
mach mal in die layout.css

background-color: inherit;


------------------


Inaktiv
|
Beenox
Thread-Ersteller


Rock the board





Beiträge: 47
# Antwort: 15 - 14.04.2012 um 22:28 Uhr
Geht auch nicht. Hintergrund dann weiß wenn die Grafik zu klein ist


------------------


Inaktiv
|
sgraewe ClanSphere Team

Supporter
Supporter




Beiträge: 6116
# Antwort: 16 - 14.04.2012 um 22:30 Uhr
löst es das problem mit der schwarzen hintergrundfarbe in der box?


Inaktiv
|
Beenox
Thread-Ersteller


Rock the board





Beiträge: 47
# Antwort: 17 - 14.04.2012 um 22:40 Uhr
Nein


------------------


Inaktiv
|
ev0lution


Geekboy





Beiträge: 1102
# Antwort: 18 - 14.04.2012 um 23:48 Uhr
merkwürdig. hätte klappen müssen.

trenn mal body und td, th {
und für die td, th { nimmst die bg farbe komplett raus oder mit inherit.

body {
font-family: Verdana, Geneva, sans-serif;
font-size: 10px;
background-color: black;
background-image: url(layout/bgtop.jpg);
background-position: top center;
background-repeat: no-repeat;
}

und

td, th {
font-family: Verdana, Geneva, sans-serif;
font-size: 10px;
}


------------------


Inaktiv
|
Beenox
Thread-Ersteller


Rock the board





Beiträge: 47
# Antwort: 19 - 15.04.2012 um 00:44 Uhr
So ging es. Dafür ist die Kalender Box nun in der falschen Farbe. Denke werde die erstmal rausnehmen und dann mal in ruhe schauen. Oder weiß Du noch auf die schnelle woran das nun liegt


------------------


Inaktiv
|
ev0lution


Geekboy





Beiträge: 1102
# Antwort: 20 - 15.04.2012 um 00:48 Uhr
in deiner content.css gibts den eintrag

.calhead {
background-color: #EEE;
color: inherit;
padding: 4px 2px 4px 2px;
text-align: center;
}

da auch die farbe entfernen oder ändern


------------------


Inaktiv
|
Antworten: 23
Seite [1] 2 >


Sie müssen sich registrieren, um zu antworten.