Hilfe bei Tabsproblem

seonderbar

Angesehenes Mitglied
Hiho ayomler,

da ich nicht so der Designer und CSS Coder bin habe ich vermutlich beim umgestalten des Templates meiner Handyseite ein paar Fehler gemacht. Ich habe versucht die Sidebar meiner Seite meinen Wünschen entsprechend anzupassen.

Nun im FF klappts auch wunderbar. Auch der IE bekommt es manchmal hin, wobei der Safari komplett den Dienst mit den Tabs verweigert.

Auch verschluckt sich der IE manchmal an den Tabs.

Kann mir da wer helfen?

Es geht um diese Seite: handy-sparen.de

Wenn Ihr da euch mal mit dem IE oder Safari bewegt, achtet mal bitte auf die TABS in der Navi.

Wo könnte denn der Fehler liegen. Im Original hat es gefunzt. Ich habe die Sidebar verändert und nun finde ich einfach den Fehler nicht.

Hier mal der Code der Sidebar:

CODE <div id="sidebar" class="grid_6">

<?php include('ads/ads-management.php'); ?>

<?php include('ads/ads-300x250.php'); ?>

<?php include('ads/ads-top.php'); ?>

<div class="box2">

<ul class="idTabs">
<li><a href="#pop">Aktuelles</a></li>
<li><a href="#comm">Reviews</a></li>
<li><a href="#feat">Topnews</a></li>
<li><a href="#tagcloud">Themen</a></li>
</ul>

<div class="spacer white">

<?php if (function_exists('recent_posts')) { ?>
<ul class="list1" id="pop">
<?php recent_posts(); ?>


</ul>
<?php } ?>

<ul class="list1" id="comm">
<?php if (function_exists('mdv_most_commented')) { mdv_most_commented(6); } ?>

</ul>

<ul class="list1" id="feat">
<?php
include(TEMPLATEPATH . '/includes/version.php');
$the_query = new WP_Query('cat=' . $ex_feat . '&showposts=10&orderby=post_date&order=desc');
while ($the_query->have_posts()) : $the_query->the_post(); $do_not_duplicate = $post->ID;
?>

<li><a title="Permanent Link to <?php the_title(); ?>" href="<?php the_permalink() ?>" rel="bookmark"><?php the_title(); ?></a></li>

<?php endwhile; ?>
</ul>

<?php if (function_exists('wp_tag_cloud')) { ?>

<div class="list1" id="tagcloud">
<?php wp_tag_cloud('smallest=10&largest=18'); ?>
</div>

<?php } ?>

</div>
<!--/spacer -->

</div>
<!--/box2 -->
<?php if (function_exists('dynamic_sidebar') && dynamic_sidebar(1) ) : else : ?>

<?php endif; ?>

<?php

$showvideo = get_option('premiumnews_show_video');

if($showvideo){ include(TEMPLATEPATH . '/includes/video.php'); }

?>


<?php

$showasides = get_option('premiumnews_show_asides');

if ($showasides) {

?>

<div class="box2">

<div class="spacer">

<h3><span class="fl">Unsere Empfehlungen des Monats</span> </h3>

<ul class="list2">

<?php
$asides = get_option('premiumnews_asides_entries');
include(TEMPLATEPATH . '/includes/version.php');

$the_query = new WP_Query('cat=' . $ex_aside . '&showposts=' . $asides . '&orderby=post_date&order=desc');
while ($the_query->have_posts()) : $the_query->the_post(); $do_not_duplicate = $post->ID;
?>

<li><a href="/prepaid-tarife/callmobile"><img class="alignleft size-full wp-image-62" style="margin: 0px 3px;" title="Callmobile Prepaid Tarif" src="/wp-content/uploads/2009/02/callmobile2.gif" alt="Callmobile Prepaid Tarif" width="101" height="29" /></a>Bei <a title="Callmobile Prepaidtarife" href="/prepaid-tarife/callmobile" target="_self"><strong>Callmobile</strong></a> kannst Du Dir zur Zeit das Prepaid-Starterpaket für lediglich <strong>2,-€</strong> sichern. Zudem erhälst Du noch ein <strong>Startguthaben in Höhe von 12,-Euro</strong>. <a href="/prepaid-tarife/callmobile">Weitere Infos
</a> ----------------------------------------------------------------------
<a href="/prepaid-tarife/avantaje-prepaid"><img class="alignleft size-full wp-image-213" style="margin: 0px 3px;" title="Avantaje Prepaid Tarif" src="/wp-content/uploads/2009/02/avantaje.jpg" alt="Avantaje Prepaid Tarif" width="101" height="29" /></a>Mit <strong>Avantaje</strong> kannst Du bereits für schlappe <strong>4 Cent/Minute</strong> ins dt. Festnetz telefonieren. Dies ist der günstigste Minutenpreis bei den Prepaidanbietern. <a href="/prepaid-tarife/avantaje-prepaid">Weitere Infos</a></li>

<?php endwhile; ?>

</ul>

</div><!--/spacer -->

</div><!--/box2 -->

<?php } ?>

<?php if (function_exists('get_flickrrss')) { ?>

<div class="box2">
<div class="top"></div>
<div class="spacer flickr">

<h3>Latest <span style="color:#0063DC">Flick</span><span style="color:#FF0084">r</span> photos</h3>
<?php get_flickrrss(); ?>

</div><!--/spacer -->
<div class="bot"></div>
</div>
<!--/box2 -->

<?php } ?>

<?php include('ads/ads-bottom.php'); ?>



<div class="clear"></div>

<div class="grid_3 alpha">

<?php if (function_exists('dynamic_sidebar') && dynamic_sidebar(2) ) : else : ?>

<?php endif; ?>

</div><!--/grid_3 alpha-->

<div class="grid_3 omega">

<?php if (function_exists('dynamic_sidebar') && dynamic_sidebar(3) ) : else : ?>

<?php endif; ?>

</div><!--/grid_3 omega-->

<div class="clear"></div>
<div align="center"><a href="http://www.ciao.de/handy_sparen_de__8087437"><img src="http://www.ciao.de/guetesiegel.php?Ref=prod_siegel&ProductId=8087437&Type=5" border="0" alt="" /></a><br /></div>
</div><!--/sidebar-->

<div class="fix"></div>



Und natürlich auch den passenden CSS Abschnitt.


CODE
/*- SideTabs -*/
.idTabs{
font-size: 12px;
float:left;
margin: 0 0 8px 0;
}
.idTabs li{
float:left;
}
.idTabs li a{
background:#ffffff;
color:#363636;
font-weight:bold;
padding:5px 8px;
display: block;
margin: 0 7px 0 0;
text-align: left;
border: 1px solid #dedbd1;
}
.idTabs li.last a{
margin: 0
}
.idTabs li a:hover,
.idTabs .selected{
background:#ebe9e1;
text-decoration: none
}



Für eure Hilfe danke ich euch schon jetzt 1000000000 Mal ;-)

Grüße

Andreas
 
Hiho,

ich nochmal. Hab das problem gestern abend gefunden. Hatte nix mit meinen CSS oder Codesnippetkünsten zu tun :)

War mal wieder ein kleiner jquery Konflikt eines überflüssigen Plugins.

Danke auch an Alex für den netten Hinweis, wo der Fehler liegen könnte. Also, thread could be closed :)

Grüße

Andreas
 
Zurück
Oben