Hi couchman
Download the Development Version (version 0.4.2-beta2) here
https://www.ads-software.com/plugins/related-posts-by-taxonomy/developers/
With this beta version and this in your (child) theme’s functions.php file:
add_filter( 'related_posts_by_taxonomy_shortcode_defaults', 'related_shortcode_defaults' );
function related_shortcode_defaults( $defaults ) {
// (Optional) html for the title
$defaults['before_title'] = '<h3 class="rpbt_title">';
$defaults['after_title'] = '</h3>';
// html for the container
$defaults['before_shortcode'] = '<div class="rpbt_container">';
$defaults['after_shortcode'] = '</div>';
return $defaults;
}
You can style the rpbt_container like this in your (child) theme’s stylesheet style.css:
.rpbt_container{
float: right;
padding: 1em 1em;
background-color: #E3E3E3;
}
Css tutorial
btw:
consider creating a child theme instead of editing your theme directly – if you upgrade the theme all your modifications will be lost.