Title: mfgk's Replies | WordPress.org

---

# mfgk

  [  ](https://wordpress.org/support/users/mfgk/)

 *   [Profile](https://wordpress.org/support/users/mfgk/)
 *   [Topics Started](https://wordpress.org/support/users/mfgk/topics/)
 *   [Replies Created](https://wordpress.org/support/users/mfgk/replies/)
 *   [Reviews Written](https://wordpress.org/support/users/mfgk/reviews/)
 *   [Topics Replied To](https://wordpress.org/support/users/mfgk/replied-to/)
 *   [Engagements](https://wordpress.org/support/users/mfgk/engagements/)
 *   [Favorites](https://wordpress.org/support/users/mfgk/favorites/)

 Search replies:

## Forum Replies Created

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

 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WP RSS Multi Importer] Trying to Create Inline-Block Display, no luck](https://wordpress.org/support/topic/trying-to-create-inline-block-display-no-luck/)
 *  Thread Starter [mfgk](https://wordpress.org/support/users/mfgk/)
 * (@mfgk)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/trying-to-create-inline-block-display-no-luck/#post-4166341)
 * Thanks for responding, Allen!
 * I’m using the Display Posts Shortcode Plugin on [this page](http://0337203.netsolhost.com/wordpress/speaking/).
   As you can see, the post’s featured image appears on the left, and the headline
   and text are inline with it.
 * I’m using RSS Multi Importer to display posts from another blog on [this page](http://0337203.netsolhost.com/wordpress/the-author/),
   where the post title appears above the image instead of inline with it.
 * I’d like to use both plugins on a single page, but I want all outputs to look
   the same for cohesiveness. I prefer the image to the left (Display Posts style)
 * For the Display Posts Plugin, the output is in the same div, and then I use display:
   inline-block in the CSS to make it display the way it does (code below for reference).
 *     ```
       <div class="listing-item">
       <a class="image"></a>
       <a class="title"</a>
       <span class="excerpt"><a class="more-link"</a></span>
       </div>
       ```
   
 * For the Multi Importer, the post title is in a different div than the excerpt.
   I think I need to put them all in the same div, but I can’t seem to customize
   the template correctly – I’m using the ‘Default’ template as the starting point.
 * Any advice would be appreciated. I manage three sites with related content and
   RSS Multi Importer has been a great solution to my potential content management
   nightmare. I’d like to use it more, but I need to figure out how to style it.
 * Thanks again!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Navigation Menu in IE](https://wordpress.org/support/topic/navigation-menu-in-ie/)
 *  Thread Starter [mfgk](https://wordpress.org/support/users/mfgk/)
 * (@mfgk)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/navigation-menu-in-ie/#post-4133868)
 * Thanks for the response – I didn’t try it but I did manage to fix it after a 
   bit of tinkering – not sure if this was the best way to do it, but it’s working
   in IE 9 and Chrome and Firefox so I’ll take it. I noticed a few other IE9 problems
   as well so here’s how I fixed it in case anyone finds it helpful. At this point
   I don’t care if it’s technically correct. I’m so ready to be done with IE.:
 *     ```
       .navbar-inner{
         filter:none;
         background-color:white;
         /* Makes the btn nav dropdown display in IE in smaller Windows*/
       }
       .collapse{
       overflow: visible
         /* Makes the btn nav dropdown display in IE in smaller Windows*/
       }
   
       .nav-collapse.collapse {
       display: inline-block;
       *display: block;
         /* Keeps the Nav from re-sizing in IE9 and prevents it from stacking in IE7 */
       }
       ```
   

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