Demo

Probiere ClanSphere aus und teste daran herum. Demo


Antworten: 2
Seite [1]
Tress13


Highlander




Herkunft: Lüdenscheid
Beiträge: 3048
# Thema - 04.10.2010 um 16:35 Uhr
Ich würde gerne meine Templates nebeneinander anzeigen lassen,
jedoch bekomme ich das irgendwie nicht hin.
Habe auch die SuFu benutzt und da ein paar Dinge drüber gefunden.
Z.B. soll ich das "einfach" in einen div setzen und den links floaten. Klappt aber leider so nicht.
Auch den Zeilenumbruch habe ich raus genommen, aber es scheint so, als liege das nicht da dran.

Ich weiss noch nicht mal genau, wo ich das ändern müsste.
Denke schon, dass es nur in der .tpl gemacht werden muss.

Z.Z. sehen meine Daten so aus:

list.tpl +-
 
1.
2.
3.
4.
5.
6.
7.
8.
9.
10.
11.
12.
13.
14.
15.
16.
17.
18.
19.
20.
21.
22.
23.
24.
1. / 2. / ... 
 <table class="forum" cellpadding="0" cellspacing="{page:cellspacing}" style="width:{page:width}">
  <
tr>
    <
td class="headb" colspan="2">Forum - {lang:list_head}</td>
  </
tr>
  <
tr>
    <
td class="leftb">{icon:contentsGesamt:  {output:all}</td>
    <
td class="rightb">{pages:list}</td>
  </
tr>
</
table>
<
br />

<
div class="tempshop1">
{
loop:tempshop}
<
table class="forum" cellpadding="0" cellspacing="{page:cellspacing}">
   <
tr>
      <
td class="headb">{tempshop:tempshop_name}</td>
   </
tr>
   <
tr>
      <
td class="leftc">{tempshop:picture}</td>
   </
tr>
</
table>
<
br />
{
stop:tempshop}
</
div>


CSS +-
 
1.
2.
3.
4.
5.
6.
7.
8.
1. / 2. / ... 
 /* START TempShop */

.tempshop1 {
  
width250px;
  
floatleft;
}

/* ENDE TempShop */


list.php +-
 
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.
1. / 2. / ... 
<?php
// ClanSphere 2009 - www.clansphere.net
// Drag0n $

$cs_lang cs_translate('tempshop');

empty(
$_REQUEST['start']) ? $start $start $_REQUEST['start']; 
$cs_sort[1] = 'tempshop_name DESC';
$cs_sort[2] = 'tempshop_name ASC';
$cs_sort[3] = 'tempshop_time DESC';
$cs_sort[4] = 'tempshop_time ASC';
empty(
$_REQUEST['sort']) ? $sort $sort $_REQUEST['sort'];
$order $cs_sort[$sort];
$tempshop_count cs_sql_count(__FILE__,'tempshop');

$data['output']['all'] = $tempshop_count;

$data['pages']['list'] = cs_pages('tempshop','list',$tempshop_count,$start,0,$sort);

$select 'tempshop_id, tempshop_time, tempshop_name, tempshop_users_name, users_id, ';
$select .= 'tempshop_info, tempshop_url, tempshop_img, tempshop_img_klein, tempshop_count, ';
$select .= 'tempshop_logo, tempshop_flash, tempshop_banner, tempshop_pics, tempshop_animation, ';
$select .= 'tempshop_angepasst, tempshop_module, tempshop_css, tempshop_verkaufsstatus';
$cs_tempshop cs_sql_select(__FILE__,'tempshop',$select,0,$order,$start,$account['users_limit']);
$tempshop_loop count($cs_tempshop);

if (empty(
$tempshop_loop)) {
  
$data['tempshop'] = '';
}

for(
$run=0$run<$tempshop_loop$run++) {
  
$pic $cs_tempshop[$run]['tempshop_img_klein'];
  
$place 'uploads/tempshop/' $pic;
  if(!empty(
$pic)) {
    
$size getimagesize($cs_main['def_path'] . '/' $place);
    
$img cs_html_img($place,$size[1],$size[0]);
    
$data['tempshop'][$run]['picture'] = cs_link($img,'tempshop','view','id=' $cs_tempshop[$run]['tempshop_id']);
  }
  else {
    
$data['tempshop'][$run]['picture'] = '';
  }

  
$cs_users_id $cs_tempshop[$run]['users_id'];
  
$cs_user cs_sql_select(__FILE__,'users','*',"users_id = '" $cs_users_id "'");
  
$url 'symbols/countries/' $cs_user['users_country'] . '.png';
  
$cs_users_nick cs_secure($cs_user['users_nick']);
  
  
$data['tempshop'][$run]['users_id'] = cs_html_img($url,11,16) . ' ';
  
$data['tempshop'][$run]['users_id'] .= cs_link($cs_users_nick,'users','view','id=' $cs_user['users_id']);
  
  if(empty(
$cs_tempshop[$run]['users_id'])) {
    
$data['tempshop'][$run]['users_id'] = $cs_tempshop[$run]['tempshop_users_name'];
  }
  
  
$data['tempshop'][$run]['tempshop_time'] = cs_date('unix',$cs_tempshop[$run]['tempshop_time'],0);
  
$data['tempshop'][$run]['tempshop_name'] = cs_link(cs_secure($cs_tempshop[$run]['tempshop_name']),'tempshop','view','id=' $cs_tempshop[$run]['tempshop_id']);
  
$data['tempshop'][$run]['tempshop_info'] = $cs_tempshop[$run]['tempshop_info'];
}

echo 
cs_subtemplate(__FILE__,$data,'tempshop','list');



Das Modul bringt mich noch um.
Über etwas Hilfe wäre ich sehr dankbar.


Edit1: Momentan sieht das ganze so aus:

http://www.tressdesignz.de/index.php?mod=tempshop&action=list


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


www.iv-gaming.de | www.iv-artwork.de

Zuletzt editiert von Tress13 am 04.10.2010 um 16:37 Uhr (1x Editiert)
Inaktiv
sgraewe ClanSphere Team

Supporter
Supporter




Beiträge: 6116
# Antwort: 1 - 04.10.2010 um 16:37 Uhr
Link zur Preview?
Warum sollte es mit float nicht gehen?

Würde den div mal in den loop machen.


Zuletzt editiert von equaL ClanSphere Team am 04.10.2010 um 16:37 Uhr (1x Editiert)
Inaktiv
|
Tress13
Thread-Ersteller


Highlander




Herkunft: Lüdenscheid
Beiträge: 3048
# Antwort: 2 - 04.10.2010 um 16:46 Uhr


Klappt...


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


www.iv-gaming.de | www.iv-artwork.de

Inaktiv
|
Antworten: 2
Seite [1]


Sie müssen sich registrieren, um zu antworten.