All images on right side
-
Version 1.06 has a bug that puts all the images on the right side. There is a fix on the way in v1.07 that should be downloadable soon.
If you are comfortable with PHP, you can add the following code to the bottom of the functions.php file:
function compete_themes_oddeven_post_class( $classes ) { global $current_class; $classes[] = $current_class; $current_class = ($current_class == 'odd') ? 'even' : 'odd'; return $classes; } add_filter ( 'post_class' , 'compete_themes_oddeven_post_class' ); global $current_class; $current_class = 'odd';
Make sure you add it before the closing PHP tag
?>
or it will cause an error.
Viewing 4 replies - 1 through 4 (of 4 total)
Viewing 4 replies - 1 through 4 (of 4 total)
- The topic ‘All images on right side’ is closed to new replies.