Title: Vinny Moreira's Replies | WordPress.org

---

# Vinny Moreira

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Vantage] adding logo to menu](https://wordpress.org/support/topic/adding-logo-to-menu/)
 *  [Vinny Moreira](https://wordpress.org/support/users/vimodesigns/)
 * (@vimodesigns)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/adding-logo-to-menu/#post-5443795)
 * For the most part you can edit your header.php file to include a link with your
   logo image.
 * `<a href="/"><img src="/wp-content/uploads/path-to-image/logo.png" /></a>`
 * Some themes make it easy to add your logo from wp-admin.
 * I hope this helps!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to add text widget only in homepage](https://wordpress.org/support/topic/how-to-add-text-widget-only-in-homepage/)
 *  [Vinny Moreira](https://wordpress.org/support/users/vimodesigns/)
 * (@vimodesigns)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/how-to-add-text-widget-only-in-homepage/#post-5443794)
 * You may want to take a look at this plugin:
 * [https://wordpress.org/plugins/widget-logic/](https://wordpress.org/plugins/widget-logic/)
 * The functions to target the home page are either is_home() or is_front_page()
   depending whether you have your front page display your latest posts or a static
   page under Settings > Reading.
 * I hope this helps.
 * Vinny
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [how to remove footer menu from blog page](https://wordpress.org/support/topic/how-to-remove-footer-menu-from-blog-page/)
 *  [Vinny Moreira](https://wordpress.org/support/users/vimodesigns/)
 * (@vimodesigns)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/how-to-remove-footer-menu-from-blog-page/#post-5442934)
 * How about under Appearance > Menus ? Do you see any menu for the blog or something?
   
   First I’d look at footer.php. If it’s not there, the quickest way to find out
   what’s spitting out that code is to do a search within all files in a directory.
   Search the directory containing your theme and/or child theme for ‘id=“footer”‘
   That should show you the files that have that line of code.
 * I hope this helps!
 * Vinny
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [how to remove footer menu from blog page](https://wordpress.org/support/topic/how-to-remove-footer-menu-from-blog-page/)
 *  [Vinny Moreira](https://wordpress.org/support/users/vimodesigns/)
 * (@vimodesigns)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/how-to-remove-footer-menu-from-blog-page/#post-5442826)
 * Have you tried Appearance > Widgets and checked if there are any widgets on a
   Blog Footer or something? If you can’t figure it out and are in desperate need
   of hiding that menu, you can always use css to hide it.
 * #footernav { display: none; }
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[WooCommerce] Add to Cart button doesn't work](https://wordpress.org/support/topic/add-to-cart-button-doesnt-work/)
 *  [Vinny Moreira](https://wordpress.org/support/users/vimodesigns/)
 * (@vimodesigns)
 * [11 years, 7 months ago](https://wordpress.org/support/topic/add-to-cart-button-doesnt-work/#post-5442472)
 * It looks like it’s just a CSS problem. The div with a class of “one_first” is
   overlapping the div with the shopping cart content. If you add this to your your
   css it should fix the issue:
 * .one_first { clear: both }
 * Cheers!
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Multiple Featured Images] Getting the fetured image bygiving post_id](https://wordpress.org/support/topic/getting-the-fetured-image-bygiving-post_id/)
 *  [Vinny Moreira](https://wordpress.org/support/users/vimodesigns/)
 * (@vimodesigns)
 * [12 years, 5 months ago](https://wordpress.org/support/topic/getting-the-fetured-image-bygiving-post_id/#post-4429296)
 * Hi,
 * I’m not the plugin author, but is this what you are looking for?
 * > kd_mfi_the_featured_image( $image_id, $post_type, $size, $post_id )
 * There’s a bunch of options under:
 * [http://wordpress.org/plugins/multiple-featured-images/faq/](http://wordpress.org/plugins/multiple-featured-images/faq/)
 * I hope this helps!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Customizr] Remove white space above the logo](https://wordpress.org/support/topic/remove-white-space-above-the-logo/)
 *  [Vinny Moreira](https://wordpress.org/support/users/vimodesigns/)
 * (@vimodesigns)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/remove-white-space-above-the-logo/#post-4253518)
 * Go to: Appearance / Editor, then find and open **style.css** under Styles.
 * Search for the class “phone” and add a “float: right;” so it should now look 
   like this:
 *     ```
       .phone {
       margin-top: 30px;
       text-align: right;
       font-size: 20px;
       float: right;
       }
       ```
   
 * I hope this helps!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Local Business] How to Highlight Current Category?](https://wordpress.org/support/topic/how-to-highlight-current-category-1/)
 *  [Vinny Moreira](https://wordpress.org/support/users/vimodesigns/)
 * (@vimodesigns)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/how-to-highlight-current-category-1/#post-4253924)
 * Add this to your stylesheet. It should do the trick!
 *     ```
       li.current-menu-item a {
           background:url(images/menuhoverbg.png) repeat-x!important;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Drop Down Menu Background is tranparent](https://wordpress.org/support/topic/drop-down-menu-background-is-tranparent/)
 *  [Vinny Moreira](https://wordpress.org/support/users/vimodesigns/)
 * (@vimodesigns)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/drop-down-menu-background-is-tranparent/#post-4253921)
 * Look for:
 * #primary-navigation .flyout li a
 * and add a background color like this:
 *     ```
       #primary-navigation .flyout li a {
       box-shadow: none;
       border: none !important;
       padding: 10px 30px !important;
       text-transform: none;
       font-size: 13px;
       font-size: 1.3rem;
       font-family: "Helvetica Neue", "Helvetica", Helvetica, Arial, sans-serif;
       background: #000;
       }
       ```
   
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[StrapVert] Thumbnails of Posts not Showing on Front Page](https://wordpress.org/support/topic/thumbnails-of-posts-not-showing-on-front-page/)
 *  [Vinny Moreira](https://wordpress.org/support/users/vimodesigns/)
 * (@vimodesigns)
 * [12 years, 7 months ago](https://wordpress.org/support/topic/thumbnails-of-posts-not-showing-on-front-page/#post-4253920)
 * Make sure your functions.php has this line of code:
 *     ```
       add_theme_support( 'post-thumbnails' );
       ```
   
 * Then, wherever your image is supposed to show, add this:
 *     ```
       if ( has_post_thumbnail() ) {
       	the_post_thumbnail();
       }
       ```
   
 * Hope that helps!

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