Title: lanigiro's Replies | WordPress.org

---

# lanigiro

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Creating a drop down menu](https://wordpress.org/support/topic/creating-a-drop-down-menu-5/)
 *  Thread Starter [lanigiro](https://wordpress.org/support/users/lanigiro/)
 * (@lanigiro)
 * [10 years, 1 month ago](https://wordpress.org/support/topic/creating-a-drop-down-menu-5/#post-7189102)
 * Hi Tanya,
    I’m not using inbuilt wordpress menu feature.
 * I’m making menu hardcoded in header.php because this menus are linked to custom
   posttype pages.
 * cheers!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [Text Won't Wrap Around Images inside the Post](https://wordpress.org/support/topic/text-wont-wrap-around-images-inside-the-post/)
 *  Thread Starter [lanigiro](https://wordpress.org/support/users/lanigiro/)
 * (@lanigiro)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/text-wont-wrap-around-images-inside-the-post/#post-7137432)
 * After hours I found and added this piece of code which solve this problem.
    **/\*
   Alignment \*/ .alignleft { display: inline; float: left; margin-right: 1.625em;}.
   alignright { display: inline; float: right; margin-left: 1.625em; } .aligncenter{
   clear: both; display: block; margin-left: auto; margin-right: auto; }`
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Why “custom.css” not showing up in firebug style panel?](https://wordpress.org/support/topic/why-customcss-not-showing-up-in-firebug-style-panel/)
 *  Thread Starter [lanigiro](https://wordpress.org/support/users/lanigiro/)
 * (@lanigiro)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/why-customcss-not-showing-up-in-firebug-style-panel/#post-7113253)
 * Hi stephencottontail,
    Thank you for your timely and helpful assistance mate.
   I really appreciate your help in resolving the problem. It was very difficult
   for me to find the problem and right code.
 * Cheers!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Why “custom.css” not showing up in firebug style panel?](https://wordpress.org/support/topic/why-customcss-not-showing-up-in-firebug-style-panel/)
 *  Thread Starter [lanigiro](https://wordpress.org/support/users/lanigiro/)
 * (@lanigiro)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/why-customcss-not-showing-up-in-firebug-style-panel/#post-7113244)
 * At the moment only my child stylesheet is loading in firebug style panel.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Why “custom.css” not showing up in firebug style panel?](https://wordpress.org/support/topic/why-customcss-not-showing-up-in-firebug-style-panel/)
 *  Thread Starter [lanigiro](https://wordpress.org/support/users/lanigiro/)
 * (@lanigiro)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/why-customcss-not-showing-up-in-firebug-style-panel/#post-7113242)
 * Hi stephencottontail,
    Can you offer me functions code that to replace my child
   style.css. Which will not allow my child style.css to load and instead will load
   custom.css
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Why “custom.css” not showing up in firebug style panel?](https://wordpress.org/support/topic/why-customcss-not-showing-up-in-firebug-style-panel/)
 *  Thread Starter [lanigiro](https://wordpress.org/support/users/lanigiro/)
 * (@lanigiro)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/why-customcss-not-showing-up-in-firebug-style-panel/#post-7113187)
 * I want to load my custom.css instead parent style.css
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [Why “custom.css” not showing up in firebug style panel?](https://wordpress.org/support/topic/why-customcss-not-showing-up-in-firebug-style-panel/)
 *  Thread Starter [lanigiro](https://wordpress.org/support/users/lanigiro/)
 * (@lanigiro)
 * [10 years, 2 months ago](https://wordpress.org/support/topic/why-customcss-not-showing-up-in-firebug-style-panel/#post-7113182)
 * <?php
 * function child_theme_enqueue_styles() {
 * wp_register_style( ‘style_desktop’, get_stylesheet_directory_uri() . ‘/style_desktop.
   css’, array( ), NULL,’media=”only screen and (min-width: 1024px)”‘);
    wp_enqueue_style(‘
   style_desktop’ );
 * wp_register_style( ‘custom_menu’, get_stylesheet_directory_uri() . ‘/css/custom_menu.
   css’, array( ), NULL );
    wp_enqueue_style( ‘custom_menu’ ); } add_action( ‘wp_enqueue_scripts’,‘
   child_theme_enqueue_styles’ );
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to show excerpts on home page in WordPress (using Twenty](https://wordpress.org/support/topic/how-to-show-excerpts-on-home-page-and-category-pages-in-wordpress-using-twenty/)
 *  Thread Starter [lanigiro](https://wordpress.org/support/users/lanigiro/)
 * (@lanigiro)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-to-show-excerpts-on-home-page-and-category-pages-in-wordpress-using-twenty/#post-6984651)
 * NeoTechnomad, Thank you for your time, patience, and persistence. I am trying
   all, but nothing have an affect.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to show excerpts on home page in WordPress (using Twenty](https://wordpress.org/support/topic/how-to-show-excerpts-on-home-page-and-category-pages-in-wordpress-using-twenty/)
 *  Thread Starter [lanigiro](https://wordpress.org/support/users/lanigiro/)
 * (@lanigiro)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-to-show-excerpts-on-home-page-and-category-pages-in-wordpress-using-twenty/#post-6984647)
 * Unfortunately, and this suggestion has no effect.
    Cheers!
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to show excerpts on home page in WordPress (using Twenty](https://wordpress.org/support/topic/how-to-show-excerpts-on-home-page-and-category-pages-in-wordpress-using-twenty/)
 *  Thread Starter [lanigiro](https://wordpress.org/support/users/lanigiro/)
 * (@lanigiro)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-to-show-excerpts-on-home-page-and-category-pages-in-wordpress-using-twenty/#post-6984642)
 * Thank you for all your help.
    I know that, but if i change “is_home or is_search”
   nothing happens, i tried all of them.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to show excerpts on home page in WordPress (using Twenty](https://wordpress.org/support/topic/how-to-show-excerpts-on-home-page-and-category-pages-in-wordpress-using-twenty/)
 *  Thread Starter [lanigiro](https://wordpress.org/support/users/lanigiro/)
 * (@lanigiro)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-to-show-excerpts-on-home-page-and-category-pages-in-wordpress-using-twenty/#post-6984605)
 * Everything I have done is correct. Nothing happens. I tried new method: [http://johngirdwood.com/2015/12/21/show-excerpt-snippets-on-blog-for-wordpress-twenty-sixteen-theme/](http://johngirdwood.com/2015/12/21/show-excerpt-snippets-on-blog-for-wordpress-twenty-sixteen-theme/)
   but it show only title the text snippet is hidden.
 *   Forum: [Fixing WordPress](https://wordpress.org/support/forum/how-to-and-troubleshooting/)
   
   In reply to: [How to show excerpts on home page in WordPress (using Twenty](https://wordpress.org/support/topic/how-to-show-excerpts-on-home-page-and-category-pages-in-wordpress-using-twenty/)
 *  Thread Starter [lanigiro](https://wordpress.org/support/users/lanigiro/)
 * (@lanigiro)
 * [10 years, 3 months ago](https://wordpress.org/support/topic/how-to-show-excerpts-on-home-page-and-category-pages-in-wordpress-using-twenty/#post-6984561)
 * Hi NeoTechnomad,
    Thank you for your response to the question. I only need to
   change both instances of Twenty_Sixteen to my child theme name im right? I dont
   need to follow the instructions on that site. Cheers!
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [How to change the white background color on twenty thirteen theme](https://wordpress.org/support/topic/how-to-change-the-white-background-color-on-twenty-thirteen-theme/)
 *  Thread Starter [lanigiro](https://wordpress.org/support/users/lanigiro/)
 * (@lanigiro)
 * [12 years, 2 months ago](https://wordpress.org/support/topic/how-to-change-the-white-background-color-on-twenty-thirteen-theme/#post-4699641)
 * Thanks so much for your very detailed response!
    The second piece of code is 
   the code that is my solution. Cheers!

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