Jump to content
InvisionCommunity.de - Der Deutsche Invision Community Support
Sign in to follow this  
BootyCall

Probleme mit dem Forum/subforum View in IE 7

Recommended Posts

..... Hi @ all

Ich hab etwas beim Forum/Subforum View rumgespielt, es schaut auch Perfekt aus, allerdings nur wenn ich mein Board mit Fire Fox anschaue

a-aff.png

Wenn ich mein Forum mit IE7 anschaue, sieht es so aus. Man sieht den Freiraum zwischen den Tabs

a-aie7.png

ich hab folgenden Code im IE7 Skin verwendet

/scoures/ipclasses.php

//-----------------------------------------

// Sub-Forum Decoration by TaDinhPhong

//-----------------------------------------

$subforum = "<table width='100%'><tr><td width='20%' align='left' valign='top'>";

$i=0;$j = round((count($forum_data['subforums'])/5),0);

foreach($forum_data['subforums'] as $k)

{

$i++;

if($i == 1)

{

$subforum .= "<img src='./style_images/sub_exp.gif' /> ".$this->ipsclass->lang['sub_forum_title']."<br />";

}

$subforum .= $k ;

if($i >= $j )

{

$subforum .= "</td><td width='21%' align='left' valign='top'>";

$i =0 ;

}

}

$subforum .= '</td></tr></table>';

$forum_data['show_subforums'] = $this->ipsclass->compiled_templates['skin_boards']->show_subforum_all_links( $subforum );

unset($subforum);

}

}

Look & Feel >>> Edit Template HTML >>> Board Index >>> show_subforum_link

<div class="subforumtab"><img src='style_images/<#IMG_DIR#>/subforum.gif' alt='' />&nbsp;<a href="{$this->ipsclass->base_url}showforum={$id}"><font color="#848484">{$name}</font></a><br /></div>

Look & Feel >>> Edit Template HTML >>> Board Index >>> show_subforum_all_link

$links

Look & Feel >>> Edit Stylesheet (CSS Advanced Mode)

.subforumtab

{

background: #363636;

border-top: 1px solid #424242;

border-left: 1px solid #424242;

border-right: 1px solid #424242;

padding-top: 2px;

padding-bottom: 4px;

}

Ich kann die Tabellen nicht nach links oder rechts schieben, da im IE7 Skin padding oder margin-left nicht greifen. Vielleicht weiss jemand einen Tipp was ich machen könnte.

Greetz Bernd

Share this post


Link to post

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now

Sign in to follow this  

×