Ekliges Problem

So Leute ich stehe momentan völlig auf dem Schlauch aber ich muss etwas lösen. Im Anhang ist das betroffene Template.

In diesem Template beginnt dieser Part
Code:
   <if condition="$vbcms_global[right_table]">
  	<td>
        	<div id="collapseobj_vbcms_table_right" style="$vbcollapse[collapseobj_vbcms_table_right] <if condition="$vbcms_global[right_colum]">width:$vbcms_global[right_colum];</if>padding:0 0 0 10px;"> 
              	$vbcms_global[right_table]
        	</div>
  	</td>
   </if>
momentan bedauerlicherweise (und völlig hässlich) unter der Navbar ($navbar), soll aber nur unter dem header ($header) beginnen, genau wie die linke Tabelle. Und jetzt kommt das peinlich: Ich kriegs nicht hin! :whistling:
 

Anhänge

  • global.TXT
    4,1 KB · Aufrufe: 39

rellek

relativ sensationell
Teammitglied
Hast du mal probiert, das hier:
Code:
<table cellpadding="0" cellspacing="0" border="0" width="100%">
   <tr valign="top">

   <if condition="$vbcms_global[middle_table]">
  	<td style="width:100%;">
     	$vbcms_global[custom_middle_top]
     	$vbcms_global[middle_table]
     	$vbcms_global[custom_middle_bottom]
  	</td>
   </if>

   <if condition="$vbcms_global[right_table]">
  	<td>
        	<div id="collapseobj_vbcms_table_right" style="$vbcollapse[collapseobj_vbcms_table_right] <if condition="$vbcms_global[right_colum]">width:$vbcms_global[right_colum];</if>padding:0 0 0 10px;"> 
              	$vbcms_global[right_table]
        	</div>
  	</td>
   </if>

   </tr>
</table>

direkt unter $header zu schieben?
 
Jo natürlich, ganz unbedarft bin ich ja auch nicht. :rolleyes:
Ich krieg die Tabelle schon unter den Header, sie liegt dann nur nicht mehr rechts sondern links der Haupttabelle.
Dazu hab ich einfach den Teil hier nach oben unter $header kopiert:
Code:
   <if condition="$vbcms_global[right_table]">
  <td>
        <div id="collapseobj_vbcms_table_right" style="$vbcollapse[collapseobj_vbcms_table_right] <if condition="$vbcms_global[right_colum]">width:$vbcms_global[right_colum];</if>padding:0 0 0 10px;"> 
              $vbcms_global[right_table]
        </div>
  </td>
   </if>
 
Oben