From 16468a23acf547a35a1dd22ad832e65c7a5dd2ec Mon Sep 17 00:00:00 2001 From: Sergey Biryukov Date: Tue, 20 Oct 2020 02:20:31 +0000 Subject: [PATCH] Sitemaps: Center the container for sitemap content. Props ramiy, swissspidy. Fixes #50658. git-svn-id: https://develop.svn.wordpress.org/trunk@49221 602fd350-edb4-49c9-b593-d223f7449a82 --- src/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/src/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php b/src/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php index 28c7936a36..e81529af07 100644 --- a/src/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php +++ b/src/wp-includes/sitemaps/class-wp-sitemaps-stylesheet.php @@ -265,7 +265,13 @@ XSL; color: #444; } + #sitemap { + max-width: 980px; + margin: 0 auto; + } + #sitemap__table { + width: 100%; border: solid 1px #ccc; border-collapse: collapse; }