• Resolved seanadl

    (@seanadl)


    Hi there,

    I’ve noticed that featured images don’t appear to be centered on AMP pages (when viewing from a desktop).

    How can I fix this?

    The page I need help with: [log in to see the link]

Viewing 2 replies - 1 through 2 (of 2 total)
  • Thanks, Suggested Solution

    Hi @seanadl,
    Thanks for letting me know about that. If you place this code in your theme’s functions.php, or a plugin, it should center the featured image:

    Centered featured image

    
    /**
     * Centers the featured image on AMP endpoints.
     *
     * @return void
     */
    add_action( 'amp_post_template_css', function() {
    	?>
    	.amp-wp-article-featured-image {
    		text-align: center;
    	}
    	<?php
    } );
    
    Thread Starter seanadl

    (@seanadl)

    Thanks Ryan, that worked.

Viewing 2 replies - 1 through 2 (of 2 total)
  • The topic ‘Featured image not centered’ is closed to new replies.