Title: nmcleish's Replies | WordPress.org

---

# nmcleish

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

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

 Search replies:

## Forum Replies Created

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

 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Vantage] PHP Deprecation Notice: dynamic properties](https://wordpress.org/support/topic/php-deprecation-notice-dynamic-properties/)
 *  Thread Starter [nmcleish](https://wordpress.org/support/users/nmcleish/)
 * (@nmcleish)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/php-deprecation-notice-dynamic-properties/#post-18119673)
 * Good morning Andrew. Thanks for the info. I will try that.
 * Many thanks
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Vantage] PHP Deprecation Notice: dynamic properties](https://wordpress.org/support/topic/php-deprecation-notice-dynamic-properties/)
 *  Thread Starter [nmcleish](https://wordpress.org/support/users/nmcleish/)
 * (@nmcleish)
 * [1 year, 6 months ago](https://wordpress.org/support/topic/php-deprecation-notice-dynamic-properties/#post-18107581)
 * Hi [@misplon](https://wordpress.org/support/users/misplon/) Andrew. Apologies
   for the delay in replying.
   I have version 1.6.4 (using a child theme)
 * Many thanks
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Fukasawa] Make mobile show a single column](https://wordpress.org/support/topic/make-mobile-show-a-single-column/)
 *  Thread Starter [nmcleish](https://wordpress.org/support/users/nmcleish/)
 * (@nmcleish)
 * [2 years ago](https://wordpress.org/support/topic/make-mobile-show-a-single-column/#post-17724978)
 * I have sorted this now.
 * I needed to put a breakpoint (actually, a couple for different screen widths)
   into the Customizer Additional CSS and target the selectors very specifically.
 * e.g.
 * `@media screen and (max-width: 400px) {
    div#posts.posts>div.post-container {
   width: 240px!important; }}
 * I hope this helps others achieve a similar result.
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [[Miyazaki] How to reduce the gutter width between home page posts](https://wordpress.org/support/topic/how-to-reduce-the-gutter-width-between-home-page-posts/)
 *  Thread Starter [nmcleish](https://wordpress.org/support/users/nmcleish/)
 * (@nmcleish)
 * [4 years, 4 months ago](https://wordpress.org/support/topic/how-to-reduce-the-gutter-width-between-home-page-posts/#post-15187627)
 * Perfect!
    Thank you, Anders, for such a fast response. I am creating a site for
   my wife’s illustration portfolio and your theme works really well for it.
 * Thank you again, and best wishes for the festive season.
 * Neil.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[Block Gallery - Photo Gallery Gutenberg Blocks] installation](https://wordpress.org/support/topic/installation-238/)
 *  [nmcleish](https://wordpress.org/support/users/nmcleish/)
 * (@nmcleish)
 * [6 years, 3 months ago](https://wordpress.org/support/topic/installation-238/#post-12412711)
 * Me neither. After installation (using theme Twentytwenty) absolutely nothing 
   happens. There is nowhere in my post to convert a gallery that I have just created.
   
   I suspect this plugin is broken, not least because there is zero documentaiton
   about it. The FAQ site is nothing more than an advert; it has no instructions
   and no useful content.
 * Very poor.
 *   Forum: [Plugins](https://wordpress.org/support/forum/plugins-and-hacks/)
    In
   reply to: [[LearnPress - WordPress LMS Plugin for Create and Sell Online Courses] Custom Certificates question](https://wordpress.org/support/topic/custom-certificates-question/)
 *  Thread Starter [nmcleish](https://wordpress.org/support/users/nmcleish/)
 * (@nmcleish)
 * [7 years, 9 months ago](https://wordpress.org/support/topic/custom-certificates-question/#post-10548021)
 * Thanks Ken!
    🙂
 *   Forum: [Themes and Templates](https://wordpress.org/support/forum/themes-and-templates/)
   
   In reply to: [wp_title showing markup tags](https://wordpress.org/support/topic/wp_title-showing-markup-tags/)
 *  Thread Starter [nmcleish](https://wordpress.org/support/users/nmcleish/)
 * (@nmcleish)
 * [13 years, 6 months ago](https://wordpress.org/support/topic/wp_title-showing-markup-tags/#post-3161794)
 * Hi esmi.
    Thanks for your response. I can’t see anywhere in the functions.php
   file which modifies the title.
 * The header file contains the code below and I can’t see where the issue might
   be.
    What I do know is that in the content of the page itself, the page heading
   is repeated (where it says Hairdressing Apprentice…) and that span is applied
   to that. So it looks like that is being picked up and carried to the title somehow.
   Here’s the title tag code in the header.php file, if it sheds any light on it?
   Thanks in advance for you advice, it is appreciated.
 *     ```
       <title><?php
       	/*
       	 * Print the <title> tag based on what is being viewed.
       	 */
       	global $page, $paged;
   
       	wp_title( '|', true, 'right' );
   
       	// Add the blog name.
       	bloginfo( 'name' );
   
       	// Add the blog description for the home/front page.
       	$site_description = get_bloginfo( 'description', 'display' );
       	if ( $site_description && ( is_home() || is_front_page() ) )
       		echo " | $site_description";
   
       	// Add a page number if necessary:
       	if ( $paged >= 2 || $page >= 2 )
       		echo ' | ' . sprintf( __( 'Page %s', 'twentyeleven' ), max( $paged, $page ) );
   
       	?></title>
       ```
   
 * As you can see it is a spawn of the twentyeleven theme.
    All the best, Neil.

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