Status
Not open for further replies.

the_quilter

Customer
How can I put a border around my postbit for activity. screenshot should explain.
 

Attachments

  • 2qmzpd2.png
    2qmzpd2.png
    13 KB · Views: 44
For now, this would require file edits.

Open /dbtech/vbactivity/includes/hooks/postbit_display_complete.php and find:
PHP:
			if (intval($this->registry->versionnumber) == 3)
			{
				$template_hook['postbit_userinfo_right_after_posts'] .= '<div>' . $vbactivity_postbit["$feature"] . '</div>';
			}
			else
			{
				$template_hook['postbit_userinfo_right_after_posts'] .= '<dd>' . $vbactivity_postbit["$feature"] . '</dd>';
			}

Edit the <div> or <dd> tag to include your custom CSS that produces the border effect.
 
Status
Not open for further replies.
Back
Top