Sticky Featured - make thumbs centered
I have tried to change to a class which text-align + center with no luck. any ideas?
//The Loop
while ($smStickyPosts->have_posts()) : $smStickyPosts->the_post();
if (has_post_thumbnail() && $showthumbs){
echo '<a href="' . get_permalink() . '">';
the_post_thumbnail(array(get_option('thumbnail_siz e_w'),get_option('thumbnail_size_h')), array('class' => 'alignspecial'));
echo '</a>';
}
elseif(function_exists('cp_get_image_url_feat') && $showthumbs) cp_get_image_url_feat(get_the_id(), 'thumbnail', 'captify', 1);
echo '<h3><a href="' . get_permalink() . '">' . get_the_title() . '</a></h3>';
echo '<br style="clear: both;" />';
endwhile;
//End of The Loop