Hi,
with this you can wrap the_content in an extra div.
remove_action( 'geodir_details_main_content', 'geodir_show_detail_page_tabs',60);
function my_cutom_detail_page () {
do_action('geodir_before_description_on_listing_detail');
if (geodir_is_page('detail')) {
ob_start();
the_content();
$content = ob_get_clean();
echo '<div class="myclass">'.$content.'</div>';
} else {
/** This action is documented in geodirectory_template_actions.php */
echo apply_filters('the_content', stripslashes($post->post_desc));
}
echo comments_template();
}
add_action( 'geodir_details_main_content', 'my_cutom_detail_page',60);
Just FYI, what you are asking is beyond support. We can point you in the right direction customizing your website, but we can’t do it for you.
If editing php isn’t something you can do on your own, even simple edits like the above, you will need to hire a developer to do any other change on your website.
Thanks