Hallo,
In dem von mir verwendetem Theme (http://wpshower.com/themes/paragrams/) wird bei MouseOver jeweils Background Hover erzeugt.
Wie kann ich diesem je nach Kategorie eine andere Farbe zuweisen ?
Ich habe es damit im Loop probiert:
PHP
<?php if (in_category('5')) {echo ".li_container .article:hover { background-color:#000000; }";}; ?>
Hat aber nicht funktioniert ! : )
Der Original Loop sieht so aus:
PHP
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
<li class="article">
<?php
if ( has_post_thumbnail() ) { ?>
<?php
$imgsrcparam = array(
'alt' => trim(strip_tags( $post->post_excerpt )),
'title' => trim(strip_tags( $post->post_title )),
);
$thumbID = get_the_post_thumbnail( $post->ID, 'background', $imgsrcparam ); ?>
<div><a href="<?php the_permalink() ?>" class="preview"><?php echo "$thumbID"; ?></a></div>
<?php } ?>
<h2><a href="<?php the_permalink(); ?>" title="<?php the_title(); ?>"><?php the_title(); ?></a></h2>
<?php the_excerpt(); ?>
<div class="postmetadata">
Posted: <?php the_time(__('F jS, Y', 'kubrick')) ?> ˑ
<?php comments_popup_link(__('No Comments'), __('1 Comment'), __('% Comments'), '', __('Comments Closed') ); ?><br />
<?php printf(__('Filled under: %s'), get_the_category_list(', ')); ?>
</div>
</li>
<?php endwhile; ?>
<?php else : ?>
<?php endif; ?>
</ul>
<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
<?php endwhile; ?>
<?php else : ?>
<div id="main">
<h1><?php _e("Sorry, but you are looking for something that isn’t here."); ?></h1>
</div>
<?php endif; ?>
Alles anzeigen
Danke für die Hilfe !