Title: Generic styles causing conflicts with other plugins
Last modified: August 31, 2016

---

# Generic styles causing conflicts with other plugins

 *  Resolved [refused9](https://wordpress.org/support/users/refused9/)
 * (@refused9)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/generic-styles-causing-conflicts-with-other-plugins/)
 * Recently purchased the Premium version of the plugin and am having issues with
   the generic styles found in enjoy_tabs.css. It absolutely positions divs found
   inside a content class “.content div{…}” and since the admin_enqueue_scripts 
   hook doesn’t discriminate which admin pages load the plugin’s styles it’s causing
   issues with other pages of the admin. In my case it was rocking my Ubermenu plugin.
 * I updated my plugin directly to only load scripts and styles for the Enjoy Instagram
   plugin options page specifically (see below) but I was hoping you could do a 
   formal update to address this issue.
 *     ```
       function aggiungi_script_in_admin($hook){
   
               if( $hook !== 'settings_page_enjoyinstagram_plugin_options' ) {
                   return;
               }
   
               wp_register_script('enjoy_instagram', plugins_url('/js/enjoy_instagram.js',__FILE__),'jquery','');
   
               wp_register_style( 'enjoyinstagram_settings', plugins_url('/css/enjoyinstagram_settings.css',__FILE__) );
               wp_register_style( 'accordion', plugins_url('/css/accordion.css',__FILE__) );
               wp_register_style( 'style6', plugins_url('/css/style6.css',__FILE__) );
       		wp_register_style( 'fabio_style', plugins_url('/css/simplegrid.css',__FILE__) );
               wp_register_style( 'enjoy_tabs', plugins_url('/css/enjoy_tabs.css',__FILE__) );
   
               wp_enqueue_script('enjoy_instagram');
   
               wp_enqueue_style( 'enjoyinstagram_settings' );
               wp_enqueue_style( 'accordion' );
               wp_enqueue_style( 'style6' );
       		wp_enqueue_style( 'fabio_style' );
                wp_enqueue_style( 'enjoy_tabs' );
       }
       ```
   
 * [https://wordpress.org/plugins/enjoy-instagram-instagram-responsive-images-gallery-and-carousel/](https://wordpress.org/plugins/enjoy-instagram-instagram-responsive-images-gallery-and-carousel/)

Viewing 2 replies - 1 through 2 (of 2 total)

 *  [fxbpinelli](https://wordpress.org/support/users/fxbpinelli/)
 * (@fxbpinelli)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/generic-styles-causing-conflicts-with-other-plugins/#post-7095617)
 * Sam problem here, I have a conflict with Yoast SEO on my posts.
    The enjoy_tabs.
   css hides the Yoast SEO block by applying an opacity on “.content div”.
 * Please fix it by updating the plugin.
 *  Plugin Author [mediabeta](https://wordpress.org/support/users/mediabeta/)
 * (@mediabeta)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/generic-styles-causing-conflicts-with-other-plugins/#post-7095657)
 * We updated our plugin and solved.
    Please try it.
 * Please, for future informations about premium send us an email with application
   form:
    [http://www.mediabetaprojects.com/enjoy-instagram-premium/help-and-support-enjoy/](http://www.mediabetaprojects.com/enjoy-instagram-premium/help-and-support-enjoy/)
 * Thank you

Viewing 2 replies - 1 through 2 (of 2 total)

The topic ‘Generic styles causing conflicts with other plugins’ is closed to new
replies.

 * ![](https://s.w.org/plugins/geopattern-icon/enjoy-instagram-instagram-responsive-
   images-gallery-and-carousel_cab692.svg)
 * [Enjoy Social Feed plugin for WordPress website](https://wordpress.org/plugins/enjoy-instagram-instagram-responsive-images-gallery-and-carousel/)
 * [Frequently Asked Questions](https://wordpress.org/plugins/enjoy-instagram-instagram-responsive-images-gallery-and-carousel/#faq)
 * [Support Threads](https://wordpress.org/support/plugin/enjoy-instagram-instagram-responsive-images-gallery-and-carousel/)
 * [Active Topics](https://wordpress.org/support/plugin/enjoy-instagram-instagram-responsive-images-gallery-and-carousel/active/)
 * [Unresolved Topics](https://wordpress.org/support/plugin/enjoy-instagram-instagram-responsive-images-gallery-and-carousel/unresolved/)
 * [Reviews](https://wordpress.org/support/plugin/enjoy-instagram-instagram-responsive-images-gallery-and-carousel/reviews/)

 * 2 replies
 * 3 participants
 * Last reply from: [mediabeta](https://wordpress.org/support/users/mediabeta/)
 * Last activity: [10 years, 2 months ago](https://wordpress.org/support/topic/generic-styles-causing-conflicts-with-other-plugins/#post-7095657)
 * Status: resolved