I have used twitter bootstrap to my Wordpress plugin. But after install the plugin, it is changing style of the theme that has already bootstrap. How can i avoid this conflict? I have added bootstrap to the plugin as follows
function newsbox_style_and_script()
{
wp_enqueue_style( 'bootstrap-style', plugins_url( '/css/bootstrap.min.css', __FILE__ ),array(),'3.0.3');
}
add_action( 'wp_enqueue_scripts', 'newsbox_style_and_script' );
Please tell the solution.