Hi,
I am using the newsport theme from woo themes and I just can't get the tab section to work. The code looks like this:
<div id="tabbed">
<ul class="idTabs">
<li><a href="#pop">Popular</a></li>
<li><a href="#comm">Latest Comments</a></li>
<li><a href="#feat">Featured</a></li>
<li><a href="#tags">Tags</a></li>
</ul><!--idTabs-->
<div class="content">
<ul id="pop">
<?php include(TEMPLATEPATH . '/includes/popular.php' ); ?>
</ul><!--pop-->
<ul id="comm">
<?php include(TEMPLATEPATH . '/includes/comments.php' ); ?>
</ul><!--comm-->
<ul id="feat">
<?php
$the_query = new WP_Query('tag=featured&offset=1&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><!--feat-->
<div id="tags">
<?php wp_tag_cloud('smallest=2&largest=20'); ?>
</div>
</div><!--content-->
</div><!--tabbed-->
But when I click on one tab, e.g. popular, the site just scrolls down to the end instead of changing just the tab.
Any ideas or similar problems?
Thank you,
do77