Below are my changes in the file wp-showhide.php – orginal code has been commented out;
1.
//Bizready ‘more_text’ => __( ‘Show Press Release (%s More Words)’, ‘wp-showhide’ ),
//Bizready ‘less_text’ => __( ‘Hide Press Release (%s Less Words)’, ‘wp-showhide’ ),
‘more_text’ => __( ”, ‘wp-showhide’ ),
‘less_text’ => __( ”, ‘wp-showhide’ ),
2.
//Bizready $hidden_css = ‘display: block;’;
$hidden_css = ‘display: block; border: 1px solid #dddddd; padding: 8px 10px; background-color: #F3F3F3;’;
3.
//Bizready $output = ‘<div id=”‘ . $attributes[‘type’] . ‘-link-‘ . $post_id . ‘” class=”sh-link ‘ . $attributes[‘type’] . ‘-link ‘ . $hidden_class .'”><span id=”‘ . $attributes[‘type’] . ‘-toggle-‘ . $post_id . ‘”>’ . $more_text . ‘</span></div>’;
$output = ‘<div id=”‘ . $attributes[‘type’] . ‘-link-‘ . $post_id . ‘” class=”sh-link ‘ . $attributes[‘type’] . ‘-link ‘ . $hidden_class .'”><div onclick=”showhide_toggle(\” . esc_js( $attributes[‘type’] ) . ‘\’, ‘ . $post_id . ‘, \” . esc_js( $more_text ) . ‘\’, \” . esc_js( $less_text ) . ‘\’); return false;” aria-expanded=”‘ . $hidden_aria_expanded .'”><span id=”‘ . $attributes[‘type’] . ‘-toggle-‘ . $post_id . ‘”>’ . $more_text . ‘</span> <img src=”https://….url link……./info_icon.gif”></div></div>’;
If you provide email, I can send you rhe file.