<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://mw.mh370.wiki/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Grant</id>
	<title>mw.mh370.wiki - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://mw.mh370.wiki/w/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=Grant"/>
	<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/Special:Contributions/Grant"/>
	<updated>2026-04-17T12:26:54Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.43.1</generator>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1837</id>
		<title>Tab Removal</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1837"/>
		<updated>2025-08-21T10:29:25Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PageHeader}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;On the {{MH370Site}} website I wanted no Tabs. I wanted the page head to be uncluttered. And I did not want to open discussion pages (Talk) or allow the page source to be viewed. I just wanted it to look clean and simple.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Tab removal was achieved by adding the following to Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-main { display:none !important; }  /* Page tab */&lt;br /&gt;
#ca-talk { display: none !important; }       /* Discussion Tab */&lt;br /&gt;
#ca-history { display: none !important;}     /* View History / History Tab */&lt;br /&gt;
#ca-viewsource { display: none !important; } /* Users without Edit permission could still view the page source */&lt;br /&gt;
#ca-view { display:none!important; }         /* Read Tab (Vector Skin) */&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Edit tab is available to a logged-in user. And &#039;More&#039; opens the dropdown menu for Delete, Move and Protect. But these are not visible to the anonymous users.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;ca-nstab&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;In the Main namespace the first Tab is labelled &amp;lt;i&amp;gt;Page&amp;lt;/i&amp;gt;.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:MainPageTab.jpg|alt=Page Tab|Page Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt; The label can be changed - see &amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Snippets/Main_Page_tab&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Snippets/Main Page tab&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;. In Wikipedia the &#039;Page&#039; Tab is labelled &#039;Article&#039;.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Also, in Wikipedia, a mouse-over the Article Tab reveals a message &#039;View the content page [alt-shift-c]&#039;. This keyboard shortcut is supposed to make it easy for users to quickly switch between the Content and other views of the page, like Discussion (or talk). Wouldn&#039;t it be simpler to just click on the Tab? But in the background is a set of Access Keys with functionality modelled on the HTML accesskey attribute. Browsers typically use Alt + Accesskey, or Alt +Shift + Accesskey. In MediaWiki the Accesskey can be defined by creating a page in the MediaWiki Namespace, for example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MediaWiki:Accesskey-ca-nstab-main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Add a single letter in this page, a c perhaps, and that will become the keyboard shortcut (with alt + shift) to switch the page view to the article or content.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The components of the page name are &amp;lt;i&amp;gt;Accesskey&amp;lt;/i&amp;gt;, then the prefix &amp;lt;i&amp;gt;ca-nstab&amp;lt;/i&amp;gt;, then &amp;lt;i&amp;gt;main&amp;lt;/i&amp;gt;. This defines the accesskey for the Main namespace only.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;However, a more common requirement may be to remove the &#039;Page&#039; tab completely. This is simple by adding the line &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; to MediaWiki:Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So, to remove the Tab which relates to a namespace, and using the format of the working example &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; it should be possible to remove the Tab associated with other namespaces by adding a similar line to MediaWiki:Common.css. For example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-&amp;lt;i&amp;gt;namespace_name&amp;lt;/i&amp;gt; { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This website has a public namespace called Snippets. Here is the associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NstabSnippets.jpg|alt=Namespace Tab for Snippets namespace|Namespace Tab for Snippets namespace]]&lt;br /&gt;
&amp;lt;p&amp;gt;Now this line has been added to MediaWiki:Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-snippets { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; And here is the result, with a page name included to show the namespace prefix Snippets: And there is no associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SnippetsNoTab.jpg|alt=Page in Snippets namespace without a Tab|Page in Snippets namespace without a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;Can the namespace be identified by Number instead of Name?&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Snippets namespace was defined like this - &amp;lt;code&amp;gt;define(&amp;quot;NS_SNIPPETS&amp;quot;, 3400);&amp;lt;/code&amp;gt; &amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Discussion (Talk) tab can be removed by specifying the namespace by number, for example this works:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;body.ns-3400 #ca-talk { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But I couldn&#039;t remove the tab labelled Snippets by using similar CSS.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Tab Removal in the {{MH370Site}} Website&amp;lt;/h2&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Namespace Tabs&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;There are several namespaces which hold public content. Two namespaces had unfriendly names:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Namespace name appeared in a Tab but hadn&#039;t bothered me until now.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015inTab.jpg|alt=Namespace FI_2015 in a Tab|Namespace FI_2015 in a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;To make the displayed names more friendly I changed the name of each namespace to a descriptive title and retained the original name as the alias. This is quite safe - the namespace Number is critical and changing it effectively causes all the content to be lost and a new empty namespace to be created. So don&#039;t do that!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The new namespace names are:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information (2015) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report (2018) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But now the page head looks like this:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;And&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Removing the Tab with the Namesace Name&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The page source, shown by Firefox Web developer Tools, contains the various classes, including the id ca-nstab-safety_investigation_report_(2018). A similar id is generated for the Factual Information (2015).&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:LeftNavCSS.jpg|alt=Page source showing Tab in Left Navigation Tab|Page source showing Tab in Left Navigation Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;In the previous example, the CSS &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-snippets { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; was effective in removing the tab labelled Snippets. So, logically, one would think that this line in MediaWiki:Common.css would be effective too:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-safety_investigation_report_(2018) { display: none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But it isn&#039;t. Doesn&#039;t work. &amp;lt;b&amp;gt;The brackets (  ) are the problem&amp;lt;/b&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;I re-named each namespace:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information 2015 &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report 2018 &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The associated tabs have been removed with these lines added to MediaWiki.Common.css:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-factual_information_2015 { display: none !important; }&lt;br /&gt;
&lt;br /&gt;
#ca-nstab-safety_investigation_report_2018 { display: none !important; }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Success!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h5&amp;gt;A Workaround&amp;lt;/h5&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is a workaround. It worked, but there had to be a better way, and I think I found it, as above.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Tab containing the Namespace name has a white background. I figure that one way to check if you have identified a target item is to change its colour.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is the CSS creating the white background:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NStabWhiteBackground.jpg|alt=Identifying the class by its white background|Identifying the class by its white background]]&lt;br /&gt;
&amp;lt;p&amp;gt;I added this to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { background:green; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:GreenTab.jpg|alt=Namespace tab with green background|Namespace tab with green background]]&lt;br /&gt;
&amp;lt;p&amp;gt;Bold colours prove the CSS is functional!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So now I have added this line to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { display: none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018NoTab.jpg|alt=Page Head with no Tab for namespace name|Page Head with no Tab for namespace name]]&lt;br /&gt;
&amp;lt;p&amp;gt;The applied CSS is captured here:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:WhiteTabNotDisplayed.jpg|alt=White namespace tab not displayed in page head|White namespace tab not displayed in page head]]&lt;br /&gt;
&amp;lt;p&amp;gt;As you can see, the tab still has a white background, but the display:none has finally been effective. It also works for all custom namespaces.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Next Steps&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Apply similar CSS to remove tabs associated with other namespaces.&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Use the magic word [[Page Titles|DISPLAYTITLE]] to make some abbreviated page names (like TOC) more friendly or meaningful. This is only possible after solving problems with getting DISPLAYTITLE to work properly.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Links&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
   &amp;lt;dt&amp;gt;Manual:Removing tabs&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Hide page tabs &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;How to remove the top navigation page tabs in MediaWiki &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt; &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot; &amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Customise]]&lt;br /&gt;
[[Category:Troubleshooting]]&lt;br /&gt;
[[Category:Interface]]&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1836</id>
		<title>Tab Removal</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1836"/>
		<updated>2025-08-21T10:28:22Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PageHeader}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;On the {{MH370Site}} website I wanted no Tabs. I wanted the page head to be uncluttered. And I did not want to open discussion pages (Talk) or allow the page source to be viewed. I just wanted it to look clean and simple.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Tab removal was achieved by adding the following to Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-main { display:none !important; }  /* Page tab */&lt;br /&gt;
#ca-talk { display: none !important; }       /* Discussion Tab */&lt;br /&gt;
#ca-history { display: none !important;}     /* View History / History Tab */&lt;br /&gt;
#ca-viewsource { display: none !important; } /* Users without Edit permission could still view the page source */&lt;br /&gt;
#ca-view { display:none!important; }         /* Read Tab (Vector Skin) */&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Edit tab is available to a logged-in user. And &#039;More&#039; opens the dropdown menu for Delete, Move and Protect. But these are not visible to the anonymous users.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;ca-nstab&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;In the Main namespace the first Tab is labelled &amp;lt;i&amp;gt;Page&amp;lt;/i&amp;gt;.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:MainPageTab.jpg|alt=Page Tab|Page Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt; The label can be changed - see &amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Snippets/Main_Page_tab&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Snippets/Main Page tab&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;. In Wikipedia the &#039;Page&#039; Tab is labelled &#039;Article&#039;.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Also, in Wikipedia, a mouse-over the Article Tab reveals a message &#039;View the content page [alt-shift-c]&#039;. This keyboard shortcut is supposed to make it easy for users to quickly switch between the Content and other views of the page, like Discussion (or talk). Wouldn&#039;t it be simpler to just click on the Tab? But in the background is a set of Access Keys with functionality modelled on the HTML accesskey attribute. Browsers typically use Alt + Accesskey, or Alt +Shift + Accesskey. In MediaWiki the Accesskey can be defined by creating a page in the MediaWiki Namespace, for example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MediaWiki:Accesskey-ca-nstab-main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Add a single letter in this page, a c perhaps, and that will become the keyboard shortcut (with alt + shift) to switch the page view to the article or content.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The components of the page name are &amp;lt;i&amp;gt;Accesskey&amp;lt;/i&amp;gt;, then the prefix &amp;lt;i&amp;gt;ca-nstab&amp;lt;/i&amp;gt;, then &amp;lt;i&amp;gt;main&amp;lt;/i&amp;gt;. This defines the accesskey for the Main namespace only.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;However, a more common requirement may be to remove the &#039;Page&#039; tab completely. This is simple by adding the line &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; to MediaWiki:Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So, to remove the Tab which relates to a namespace, and using the format of the working example &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; it should be possible to remove the Tab associated with other namespaces by adding a similar line to MediaWiki:Common.css. For example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-&amp;lt;i&amp;gt;namespace_name&amp;lt;/i&amp;gt; { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This website has a public namespace called Snippets. Here is the associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NstabSnippets.jpg|alt=Namespace Tab for Snippets namespace|Namespace Tab for Snippets namespace]]&lt;br /&gt;
&amp;lt;p&amp;gt;Now this line has been added to MediaWiki:Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-snippets { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; And here is the result, with a page name included to show the namespace prefix Snippets: And there is no associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SnippetsNoTab.jpg|alt=Page in Snippets namespace without a Tab|Page in Snippets namespace without a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;Can the namespace be identified by Number instead of Name?&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Snippets namespace was defined like this - &amp;lt;code&amp;gt;define(&amp;quot;NS_SNIPPETS&amp;quot;, 3400);&amp;lt;/code&amp;gt; &amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Discussion (Talk) tab can be removed by specifying the namespace by number, for example this works:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;body.ns-3400 #ca-talk { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But I couldn&#039;t remove the tab labelled Snippets by using similar CSS.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Tab Removal in the {{MH370Site}} Website&amp;lt;/h2&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Namespace Tabs&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;There are several namespaces which hold public content. Two namespaces had unfriendly names:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Namespace name appeared in a Tab but hadn&#039;t bothered me until now.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015inTab.jpg|alt=Namespace FI_2015 in a Tab|Namespace FI_2015 in a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;To make the displayed names more friendly I changed the name of each namespace to a descriptive title and retained the original name as the alias. This is quite safe - the namespace Number is critical and changing it effectively causes all the content to be lost and a new empty namespace to be created. So don&#039;t do that!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The new namespace names are:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information (2015) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report (2018) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But now the page head looks like this:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;And&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Removing the Tab with the Namesace Name&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The page source, shown by Firefox Web developer Tools, contains the various classes, including the id ca-nstab-safety_investigation_report_(2018). A similar id is generated for the Factual Information (2015).&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:LeftNavCSS.jpg|alt=Page source showing Tab in Left Navigation Tab|Page source showing Tab in Left Navigation Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;In the previous example, the CSS &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-snippets { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; was effective in removing the tab labelled Snippets. So, logically, one would think that this line in MediaWiki:Common.css would be effective too:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-safety_investigation_report_(2018) { display: none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But it isn&#039;t. Doesn&#039;t work. &amp;lt;b&amp;gt;The brackets (  ) are the problem&amp;lt;/b&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;I re-named each namespace:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information 2015 &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report 2018 &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The associated tabs have been removed with these lines added to MediaWiki.Common.css:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-factual_information_2015 { display: none !important; }&lt;br /&gt;
&lt;br /&gt;
#ca-nstab-safety_investigation_report_2018 { display: none !important; }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Success!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h5&amp;gt;A Workaround&amp;lt;/h5&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is a workaround. It worked, but there had to be a better way, and I think I found it, as above.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Tab containing the Namespace name has a white background. I figure that one way to check if you have identified a target item is to change its colour.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is the CSS creating the white background:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NStabWhiteBackground.jpg|alt=Identifying the class by its white background|Identifying the class by its white background]]&lt;br /&gt;
&amp;lt;p&amp;gt;I added this to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { background:green; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:GreenTab.jpg|alt=Namespace tab with green background|Namespace tab with green background]]&lt;br /&gt;
&amp;lt;p&amp;gt;Bold colours prove the CSS is functional!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So now I have added this line to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { display: none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018NoTab.jpg|alt=Page Head with no Tab for namespace name|Page Head with no Tab for namespace name]]&lt;br /&gt;
&amp;lt;p&amp;gt;The applied CSS is captured here:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:WhiteTabNotDisplayed.jpg|alt=White namespace tab not displayed in page head|White namespace tab not displayed in page head]]&lt;br /&gt;
&amp;lt;p&amp;gt;As you can see, the tab still has a white background, but the display:none has finally been effective. It also works for all custom namespaces./p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Next Steps&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Apply similar CSS to remove tabs associated with other namespaces.&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Use the magic word [[Page Titles|DISPLAYTITLE]] to make some abbreviated page names (like TOC) more friendly or meaningful. This is only possible after solving problems with getting DISPLAYTITLE to work properly.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Links&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
   &amp;lt;dt&amp;gt;Manual:Removing tabs&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Hide page tabs &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;How to remove the top navigation page tabs in MediaWiki &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt; &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot; &amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Customise]]&lt;br /&gt;
[[Category:Troubleshooting]]&lt;br /&gt;
[[Category:Interface]]&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1835</id>
		<title>Tab Removal</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1835"/>
		<updated>2025-08-21T10:26:55Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PageHeader}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;On the {{MH370Site}} website I wanted no Tabs. I wanted the page head to be uncluttered. And I did not want to open discussion pages (Talk) or allow the page source to be viewed. I just wanted it to look clean and simple.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Tab removal was achieved by adding the following to Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-main { display:none !important; }  /* Page tab */&lt;br /&gt;
#ca-talk { display: none !important; }       /* Discussion Tab */&lt;br /&gt;
#ca-history { display: none !important;}     /* View History / History Tab */&lt;br /&gt;
#ca-viewsource { display: none !important; } /* Users without Edit permission could still view the page source */&lt;br /&gt;
#ca-view { display:none!important; }         /* Read Tab (Vector Skin) */&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Edit tab is available to a logged-in user. And &#039;More&#039; opens the dropdown menu for Delete, Move and Protect. But these are not visible to the anonymous users.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;ca-nstab&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;In the Main namespace the first Tab is labelled &amp;lt;i&amp;gt;Page&amp;lt;/i&amp;gt;.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:MainPageTab.jpg|alt=Page Tab|Page Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt; The label can be changed - see &amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Snippets/Main_Page_tab&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Snippets/Main Page tab&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;. In Wikipedia the &#039;Page&#039; Tab is labelled &#039;Article&#039;.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Also, in Wikipedia, a mouse-over the Article Tab reveals a message &#039;View the content page [alt-shift-c]&#039;. This keyboard shortcut is supposed to make it easy for users to quickly switch between the Content and other views of the page, like Discussion (or talk). Wouldn&#039;t it be simpler to just click on the Tab? But in the background is a set of Access Keys with functionality modelled on the HTML accesskey attribute. Browsers typically use Alt + Accesskey, or Alt +Shift + Accesskey. In MediaWiki the Accesskey can be defined by creating a page in the MediaWiki Namespace, for example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MediaWiki:Accesskey-ca-nstab-main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Add a single letter in this page, a c perhaps, and that will become the keyboard shortcut (with alt + shift) to switch the page view to the article or content.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The components of the page name are &amp;lt;i&amp;gt;Accesskey&amp;lt;/i&amp;gt;, then the prefix &amp;lt;i&amp;gt;ca-nstab&amp;lt;/i&amp;gt;, then &amp;lt;i&amp;gt;main&amp;lt;/i&amp;gt;. This defines the accesskey for the Main namespace only.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;However, a more common requirement may be to remove the &#039;Page&#039; tab completely. This is simple by adding the line &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; to MediaWiki:Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So, to remove the Tab which relates to a namespace, and using the format of the working example &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; it should be possible to remove the Tab associated with other namespaces by adding a similar line to MediaWiki:Common.css. For example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-&amp;lt;i&amp;gt;namespace_name&amp;lt;/i&amp;gt; { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This website has a public namespace called Snippets. Here is the associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NstabSnippets.jpg|alt=Namespace Tab for Snippets namespace|Namespace Tab for Snippets namespace]]&lt;br /&gt;
&amp;lt;p&amp;gt;Now this line has been added to MediaWiki:Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-snippets { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; And here is the result, with a page name included to show the namespace prefix Snippets: And there is no associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SnippetsNoTab.jpg|alt=Page in Snippets namespace without a Tab|Page in Snippets namespace without a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;Can the namespace be identified by Number instead of Name?&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Snippets namespace was defined like this - &amp;lt;code&amp;gt;define(&amp;quot;NS_SNIPPETS&amp;quot;, 3400);&amp;lt;/code&amp;gt; &amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Discussion (Talk) tab can be removed by specifying the namespace by number, for example this works:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;body.ns-3400 #ca-talk { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But I couldn&#039;t remove the tab labelled Snippets by using similar CSS.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Tab Removal in the {{MH370Site}} Website&amp;lt;/h2&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Namespace Tabs&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;There are several namespaces which hold public content. Two namespaces had unfriendly names:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Namespace name appeared in a Tab but hadn&#039;t bothered me until now.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015inTab.jpg|alt=Namespace FI_2015 in a Tab|Namespace FI_2015 in a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;To make the displayed names more friendly I changed the name of each namespace to a descriptive title and retained the original name as the alias. This is quite safe - the namespace Number is critical and changing it effectively causes all the content to be lost and a new empty namespace to be created. So don&#039;t do that!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The new namespace names are:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information (2015) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report (2018) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But now the page head looks like this:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;And&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Removing the Tab with the Namesace Name&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The page source, shown by Firefox Web developer Tools, contains the various classes, including the id ca-nstab-safety_investigation_report_(2018). A similar id is generated for the Factual Information (2015).&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:LeftNavCSS.jpg|alt=Page source showing Tab in Left Navigation Tab|Page source showing Tab in Left Navigation Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;In the capture above, the text is clearly ca-nstab-safety_investigation_report_(2018). In the previous example, the CSS &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-snippets { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; was effective in removing the tab labelled Snippets. So, logically, one would think that this line in MediaWiki:Common.css would be effective too:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-safety_investigation_report_(2018) { display: none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But it isn&#039;t. Doesn&#039;t work. &amp;lt;b&amp;gt;The brackets (  ) are the problem&amp;lt;/b&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;I re-named each namespace:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information 2015 &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report 2018 &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The associated tabs have been removed with these lines added to MediaWiki.Common.css:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-factual_information_2015 { display: none !important; }&lt;br /&gt;
&lt;br /&gt;
#ca-nstab-safety_investigation_report_2018 { display: none !important; }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Success!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h5&amp;gt;A Workaround&amp;lt;/h5&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is a workaround. It worked, but there had to be a better way, and I think I found it, as above.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Tab containing the Namespace name has a white background. I figure that one way to check if you have identified a target item is to change its colour.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is the CSS creating the white background:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NStabWhiteBackground.jpg|alt=Identifying the class by its white background|Identifying the class by its white background]]&lt;br /&gt;
&amp;lt;p&amp;gt;I added this to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { background:green; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:GreenTab.jpg|alt=Namespace tab with green background|Namespace tab with green background]]&lt;br /&gt;
&amp;lt;p&amp;gt;Bold colours prove the CSS is functional!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So now I have added this line to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { display: none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018NoTab.jpg|alt=Page Head with no Tab for namespace name|Page Head with no Tab for namespace name]]&lt;br /&gt;
&amp;lt;p&amp;gt;The applied CSS is captured here:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:WhiteTabNotDisplayed.jpg|alt=White namespace tab not displayed in page head|White namespace tab not displayed in page head]]&lt;br /&gt;
&amp;lt;p&amp;gt;As you can see, the tab still has a white background, but the display:none has finally been effective. It also works for all custom namespaces./p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Next Steps&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Apply similar CSS to remove tabs associated with other namespaces.&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Use the magic word [[Page Titles|DISPLAYTITLE]] to make some abbreviated page names (like TOC) more friendly or meaningful. This is only possible after solving problems with getting DISPLAYTITLE to work properly.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Links&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
   &amp;lt;dt&amp;gt;Manual:Removing tabs&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Hide page tabs &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;How to remove the top navigation page tabs in MediaWiki &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt; &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot; &amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Customise]]&lt;br /&gt;
[[Category:Troubleshooting]]&lt;br /&gt;
[[Category:Interface]]&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1834</id>
		<title>Tab Removal</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1834"/>
		<updated>2025-08-21T10:25:22Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PageHeader}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;On the {{MH370Site}} website I wanted no Tabs. I wanted the page head to be uncluttered. And I did not want to open discussion pages (Talk) or allow the page source to be viewed. I just wanted it to look clean and simple.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Tab removal was achieved by adding the following to Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-main { display:none !important; }  /* Page tab */&lt;br /&gt;
#ca-talk { display: none !important; }       /* Discussion Tab */&lt;br /&gt;
#ca-history { display: none !important;}     /* View History / History Tab */&lt;br /&gt;
#ca-viewsource { display: none !important; } /* Users without Edit permission could still view the page source */&lt;br /&gt;
#ca-view { display:none!important; }         /* Read Tab (Vector Skin) */&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Edit tab is available to a logged-in user. And &#039;More&#039; opens the dropdown menu for Delete, Move and Protect. But these are not visible to the anonymous users.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;ca-nstab&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;In the Main namespace the first Tab is labelled &amp;lt;i&amp;gt;Page&amp;lt;/i&amp;gt;.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:MainPageTab.jpg|alt=Page Tab|Page Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt; The label can be changed - see &amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Snippets/Main_Page_tab&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Snippets/Main Page tab&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;. In Wikipedia the &#039;Page&#039; Tab is labelled &#039;Article&#039;.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Also, in Wikipedia, a mouse-over the Article Tab reveals a message &#039;View the content page [alt-shift-c]&#039;. This keyboard shortcut is supposed to make it easy for users to quickly switch between the Content and other views of the page, like Discussion (or talk). Wouldn&#039;t it be simpler to just click on the Tab? But in the background is a set of Access Keys with functionality modelled on the HTML accesskey attribute. Browsers typically use Alt + Accesskey, or Alt +Shift + Accesskey. In MediaWiki the Accesskey can be defined by creating a page in the MediaWiki Namespace, for example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MediaWiki:Accesskey-ca-nstab-main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Add a single letter in this page, a c perhaps, and that will become the keyboard shortcut (with alt + shift) to switch the page view to the article or content.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The components of the page name are &amp;lt;i&amp;gt;Accesskey&amp;lt;/i&amp;gt;, then the prefix &amp;lt;i&amp;gt;ca-nstab&amp;lt;/i&amp;gt;, then &amp;lt;i&amp;gt;main&amp;lt;/i&amp;gt;. This defines the accesskey for the Main namespace only.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;However, a more common requirement may be to remove the &#039;Page&#039; tab completely. This is simple by adding the line &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; to MediaWiki:Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So, to remove the Tab which relates to a namespace, and using the format of the working example &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; it should be possible to remove the Tab associated with other namespaces by adding a similar line to MediaWiki:Common.css. For example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-&amp;lt;i&amp;gt;namespace_name&amp;lt;/i&amp;gt; { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This website has a public namespace called Snippets. Here is the associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NstabSnippets.jpg|alt=Namespace Tab for Snippets namespace|Namespace Tab for Snippets namespace]]&lt;br /&gt;
&amp;lt;p&amp;gt;Now this line has been added to MediaWiki:Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-snippets { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; And here is the result, with a page name included to show the namespace prefix Snippets: And there is no associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SnippetsNoTab.jpg|alt=Page in Snippets namespace without a Tab|Page in Snippets namespace without a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;Can the namespace be identified by Number instead of Name?&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Snippets namespace was defined like this - &amp;lt;code&amp;gt;define(&amp;quot;NS_SNIPPETS&amp;quot;, 3400);&amp;lt;/code&amp;gt; &amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Discussion (Talk) tab can be removed by specifying the namespace by number, for example this works:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;body.ns-3400 #ca-talk { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But the tab labelled Snippets cannot be removed by using similar CSS.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Tab Removal in the {{MH370Site}} Website&amp;lt;/h2&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Namespace Tabs&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;There are several namespaces which hold public content. Two namespaces had unfriendly names:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Namespace name appeared in a Tab but hadn&#039;t bothered me until now.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015inTab.jpg|alt=Namespace FI_2015 in a Tab|Namespace FI_2015 in a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;To make the displayed names more friendly I changed the name of each namespace to a descriptive title and retained the original name as the alias. This is quite safe - the namespace Number is critical and changing it effectively causes all the content to be lost and a new empty namespace to be created. So don&#039;t do that!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The new namespace names are:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information (2015) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report (2018) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But now the page head looks like this:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;And&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Removing the Tab with the Namesace Name&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The page source, shown by Firefox Web developer Tools, contains the various classes, including the id ca-nstab-safety_investigation_report_(2018). A similar id is generated for the Factual Information (2015).&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:LeftNavCSS.jpg|alt=Page source showing Tab in Left Navigation Tab|Page source showing Tab in Left Navigation Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;In the capture above, the text is clearly ca-nstab-safety_investigation_report_(2018). In the previous example, the CSS &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-snippets { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; was effective in removing the tab labelled Snippets. So, logically, one would think that this line in MediaWiki:Common.css would be effective too:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-safety_investigation_report_(2018) { display: none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But it isn&#039;t. Doesn&#039;t work. &amp;lt;b&amp;gt;The brackets (  ) are the problem&amp;lt;/b&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;I re-named each namespace:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information 2015 &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report 2018 &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The associated tabs have been removed with these lines added to MediaWiki.Common.css:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-factual_information_2015 { display: none !important; }&lt;br /&gt;
&lt;br /&gt;
#ca-nstab-safety_investigation_report_2018 { display: none !important; }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Success!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h5&amp;gt;A Workaround&amp;lt;/h5&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is a workaround. It worked, but there had to be a better way, and I think I found it, as above.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Tab containing the Namespace name has a white background. I figure that one way to check if you have identified a target item is to change its colour.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is the CSS creating the white background:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NStabWhiteBackground.jpg|alt=Identifying the class by its white background|Identifying the class by its white background]]&lt;br /&gt;
&amp;lt;p&amp;gt;I added this to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { background:green; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:GreenTab.jpg|alt=Namespace tab with green background|Namespace tab with green background]]&lt;br /&gt;
&amp;lt;p&amp;gt;Bold colours prove the CSS is functional!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So now I have added this line to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { display: none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018NoTab.jpg|alt=Page Head with no Tab for namespace name|Page Head with no Tab for namespace name]]&lt;br /&gt;
&amp;lt;p&amp;gt;The applied CSS is captured here:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:WhiteTabNotDisplayed.jpg|alt=White namespace tab not displayed in page head|White namespace tab not displayed in page head]]&lt;br /&gt;
&amp;lt;p&amp;gt;As you can see, the tab still has a white background, but the display:none has finally been effective. It also works for all custom namespaces./p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Next Steps&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Apply similar CSS to remove tabs associated with other namespaces.&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Use the magic word [[Page Titles|DISPLAYTITLE]] to make some abbreviated page names (like TOC) more friendly or meaningful. This is only possible after solving problems with getting DISPLAYTITLE to work properly.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Links&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
   &amp;lt;dt&amp;gt;Manual:Removing tabs&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Hide page tabs &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;How to remove the top navigation page tabs in MediaWiki &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt; &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot; &amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Customise]]&lt;br /&gt;
[[Category:Troubleshooting]]&lt;br /&gt;
[[Category:Interface]]&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1833</id>
		<title>Tab Removal</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1833"/>
		<updated>2025-08-21T10:23:18Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PageHeader}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;On the {{MH370Site}} website I wanted no Tabs. I wanted the page head to be uncluttered. And I did not want to open discussion pages (Talk) or allow the page source to be viewed. I just wanted it to look clean and simple.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Tab removal was achieved by adding the following to Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-main { display:none !important; }  /* Page tab */&lt;br /&gt;
#ca-talk { display: none !important; }       /* Discussion Tab */&lt;br /&gt;
#ca-history { display: none !important;}     /* View History / History Tab */&lt;br /&gt;
#ca-viewsource { display: none !important; } /* Users without Edit permission could still view the page source */&lt;br /&gt;
#ca-view { display:none!important; }         /* Read Tab (Vector Skin) */&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Edit tab is available to a logged-in user. And &#039;More&#039; opens the dropdown menu for Delete, Move and Protect. But these are not visible to the anonymous users.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;ca-nstab&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;In the Main namespace the first Tab is labelled &amp;lt;i&amp;gt;Page&amp;lt;/i&amp;gt;.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:MainPageTab.jpg|alt=Page Tab|Page Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt; The label can be changed - see &amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Snippets/Main_Page_tab&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Snippets/Main Page tab&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;. In Wikipedia the &#039;Page&#039; Tab is labelled &#039;Article&#039;.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Also, in Wikipedia, a mouse-over the Article Tab reveals a message &#039;View the content page [alt-shift-c]&#039;. This keyboard shortcut is supposed to make it easy for users to quickly switch between the Content and other views of the page, like Discussion (or talk). Wouldn&#039;t it be simpler to just click on the Tab? But in the background is a set of Access Keys with functionality modelled on the HTML accesskey attribute. Browsers typically use Alt + Accesskey, or Alt +Shift + Accesskey. In MediaWiki the Accesskey can be defined by creating a page in the MediaWiki Namespace, for example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MediaWiki:Accesskey-ca-nstab-main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Add a single letter in this page, a c perhaps, and that will become the keyboard shortcut (with alt + shift) to switch the page view to the article or content.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The components of the page name are &amp;lt;i&amp;gt;Accesskey&amp;lt;/i&amp;gt;, then the prefix &amp;lt;i&amp;gt;ca-nstab&amp;lt;/i&amp;gt;, then &amp;lt;i&amp;gt;main&amp;lt;/i&amp;gt;. This defines the accesskey for the Main namespace only.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;However, a more common requirement may be to remove the &#039;Page&#039; tab completely. This is simple by adding the line &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; to MediaWiki:Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So, to remove the Tab which relates to a namespace, and using the format of the working example &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; it should be possible to remove the Tab associated with other namespaces by adding a simplar line to MediaWiki:Common.css. For example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-&amp;lt;i&amp;gt;namespace_name&amp;lt;/i&amp;gt; { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This website has a public namespace called Snippets. Here is the associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NstabSnippets.jpg|alt=Namespace Tab for Snippets namespace|Namespace Tab for Snippets namespace]]&lt;br /&gt;
&amp;lt;p&amp;gt;Now this line has been added to MediaWiki:Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-snippets { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; And here is the result, with a page name included to show the namespace prefix Snippets: And there is no associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SnippetsNoTab.jpg|alt=Page in Snippets namespace without a Tab|Page in Snippets namespace without a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;Can the namespace be identified by Number instead of Name?&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Snippets namespace was defined like this - &amp;lt;code&amp;gt;define(&amp;quot;NS_SNIPPETS&amp;quot;, 3400);&amp;lt;/code&amp;gt; &amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Discussion (Talk) tab can be removed by specifying the namespace by number, for example this works:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;body.ns-3400 #ca-talk { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But the tab labelled Snippets cannot be removed by using similar CSS.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Tab Removal in the {{MH370Site}} Website&amp;lt;/h2&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Namespace Tabs&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;There are several namespaces which hold public content. Two namespaces had unfriendly names:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Namespace name appeared in a Tab but hadn&#039;t bothered me until now.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015inTab.jpg|alt=Namespace FI_2015 in a Tab|Namespace FI_2015 in a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;To make the displayed names more friendly I changed the name of each namespace to a descriptive title and retained the original name as the alias. This is quite safe - the namespace Number is critical and changing it effectively causes all the content to be lost and a new empty namespace to be created. So don&#039;t do that!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The new namespace names are:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information (2015) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report (2018) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But now the page head looks like this:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;And&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Removing the Tab with the Namesace Name&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The page source, shown by Firefox Web developer Tools, contains the various classes, including the id ca-nstab-safety_investigation_report_(2018). A similar id is generated for the Factual Information (2015).&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:LeftNavCSS.jpg|alt=Page source showing Tab in Left Navigation Tab|Page source showing Tab in Left Navigation Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;In the capture above, the text is clearly ca-nstab-safety_investigation_report_(2018). In the previous example, the CSS &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-snippets { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; was effective in removing the tab labelled Snippets. So, logically, one would think that this line in MediaWiki:Common.css would be effective too:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-safety_investigation_report_(2018) { display: none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But it isn&#039;t. Doesn&#039;t work. &amp;lt;b&amp;gt;The brackets (  ) are the problem&amp;lt;/b&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;I re-named each namespace:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information 2015 &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report 2018 &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The associated tabs have been removed with these lines added to MediaWiki.Common.css:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-factual_information_2015 { display: none !important; }&lt;br /&gt;
&lt;br /&gt;
#ca-nstab-safety_investigation_report_2018 { display: none !important; }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Success!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h5&amp;gt;A Workaround&amp;lt;/h5&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is a workaround. It worked, but there had to be a better way, and I think I found it, as above.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Tab containing the Namespace name has a white background. I figure that one way to check if you have identified a target item is to change its colour.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is the CSS creating the white background:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NStabWhiteBackground.jpg|alt=Identifying the class by its white background|Identifying the class by its white background]]&lt;br /&gt;
&amp;lt;p&amp;gt;I added this to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { background:green; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:GreenTab.jpg|alt=Namespace tab with green background|Namespace tab with green background]]&lt;br /&gt;
&amp;lt;p&amp;gt;Bold colours prove the CSS is functional!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So now I have added this line to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { display: none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018NoTab.jpg|alt=Page Head with no Tab for namespace name|Page Head with no Tab for namespace name]]&lt;br /&gt;
&amp;lt;p&amp;gt;The applied CSS is captured here:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:WhiteTabNotDisplayed.jpg|alt=White namespace tab not displayed in page head|White namespace tab not displayed in page head]]&lt;br /&gt;
&amp;lt;p&amp;gt;As you can see, the tab still has a white background, but the display:none has finally been effective. It also works for all custom namespaces./p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Next Steps&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Apply similar CSS to remove tabs associated with other namespaces.&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Use the magic word [[Page Titles|DISPLAYTITLE]] to make some abbreviated page names (like TOC) more friendly or meaningful. This is only possible after solving problems with getting DISPLAYTITLE to work properly.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Links&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
   &amp;lt;dt&amp;gt;Manual:Removing tabs&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Hide page tabs &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;How to remove the top navigation page tabs in MediaWiki &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt; &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot; &amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
[[Category:Customise]]&lt;br /&gt;
[[Category:Troubleshooting]]&lt;br /&gt;
[[Category:Interface]]&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=Page_Titles&amp;diff=1832</id>
		<title>Page Titles</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=Page_Titles&amp;diff=1832"/>
		<updated>2025-08-21T10:19:02Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PageHeader}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;On the {{MH370Site}} I have used short names for pages but would prefer the reader to see something more descriptive. Two examples:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Many countries assisted with the search for MH370, the investigations, or debris was located. The website has one page-per-country with the country name as the page title. While the page title is short, for example &amp;lt;i&amp;gt;Australia&amp;lt;/i&amp;gt;, the first heading is more descriptive, for example &amp;lt;i&amp;gt;Australia and Malaysia Airlines Flight MH370&amp;lt;/i&amp;gt;. That would be nice as a &amp;lt;i&amp;gt;displayed&amp;lt;/i&amp;gt; page title.&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;All of the media statements related to flight MH370 are in News pages and the title includes a &amp;lt;i&amp;gt;Day Number&amp;lt;/i&amp;gt;, for example 2014/Day 001 which is the day of the incident, Saturday 8 March 2014. The date is more useful to a reader; the Day# is more useful for indexing content within the site.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Magic Word DISPLAYTITLE&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;MediaWiki does permit the displayed page title to be different from the actual page title - with restrictions.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The intention is to allow a variant of the page title to be displayed if it is more correct, for example if I attempted to create a page titled wgRestrictDisplayTitle, MediaWiki would capitalise the first letter &amp;lt;code&amp;gt;Create the page &amp;quot;WgRestrictPageTitle&amp;quot; on this wiki!&amp;lt;/code&amp;gt;. If WgRestrictPageTitle was the actual page name, the magic word DISPLAYTITLE could be used on the page like this: &amp;lt;html&amp;gt;&amp;lt;code&amp;gt;{{DISPLAYTITLE:wgRestrictDisplayTitle}}&amp;lt;/code&amp;gt;&amp;lt;/html&amp;gt; and the reader would see the first letter in lower case.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;It is NOT the intention of MediaWiki developers to enable this magic word to display something completely different from the actual page title. But it can be done, and would be useful.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;For DISPLAYTITLE to work, two settings must be configured. But it may not work. A solution is below.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;$wgAllowDisplayTitle&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The default is &amp;lt;html&amp;gt;&amp;lt;code&amp;gt;$wgAllowDisplayTitle = &#039;true&#039;;&amp;lt;/code&amp;gt;&amp;lt;/html&amp;gt;. This setting allows the magic word DISPLAYTITLE to make minor changes to a page title such as changing letter case.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;For example, &amp;lt;html&amp;gt;&amp;lt;code&amp;gt;{{DISPLAYTITLE:australia}}&amp;lt;/code&amp;gt;&amp;lt;/html&amp;gt; displayed the title of the Australia page as australia. But did not allow a different title such as Australia and Malaysia Airlines Flight MH370.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This is because $wgRestrictDisplayTitle is true by default.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;$wgRestrictDisplayTitle&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The default is &amp;lt;html&amp;gt;&amp;lt;code&amp;gt;$wgRestrictDisplayTitle = &#039;true&#039;;&amp;lt;/code&amp;gt;&amp;lt;/html&amp;gt;. This restricts the usage of the magic word DISPLAYTITLE.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Changing the setting is simple - place the setting &amp;lt;html&amp;gt;&amp;lt;code&amp;gt;$wgRestrictDisplayTitle = &#039;false&#039;;&amp;lt;/code&amp;gt;&amp;lt;/html&amp;gt; in LocalSettings.php.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;If you want to be sure, put both settings in LocalSettings.php:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# Allow full use of DisplayTitle&lt;br /&gt;
$wgAllowDisplayTitle = &#039;true&#039;; &lt;br /&gt;
$wgRestrictDisplayTitle = &#039;false&#039;;&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This should work, except when it doesn&#039;t.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;When DISPLAYTITLE Doesn&#039;t Work&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Configuration in LocalSettings.php is supposed to over-ride MediaWiki default configuration. However, a new value for $wgRestrictDisplayTitle in LocalSettings.php may not over-ride the MediaWiki default.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The default value for each variable $wgAllowDisplayTitle and $wgRestrictDisplayTitle is configured in the file /w/includes/config-schema.php (In MediaWiki version 1.43.).&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:DisplayTitleDefault.jpg|alt=Default values for Display Title variables|Default values for Display Title variables]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h5&amp;gt;Configuration Tests&amp;lt;/h5&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;For each combination of settings I have two tests. On the current version of {{MH370Site}} and the page &amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mh370wiki.net/Australia&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Australia&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt; I will use the magic word DISPLAYTITLE to (separately) display two variants of the current page title (Australia):-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;&amp;lt;html&amp;gt;&amp;lt;code&amp;gt;{{DISPLAYTITLE:australia}}&amp;lt;/code&amp;gt;&amp;lt;/html&amp;gt; If this title displays correctly then the effective value of $wgAllowDisplayTitle must be true.  &amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;&amp;lt;html&amp;gt;&amp;lt;code&amp;gt;{{DISPLAYTITLE:Australia and Malaysia Airlines Flight MH370}}&amp;lt;/code&amp;gt;&amp;lt;/html&amp;gt; If this title displays correctly then the effective value of $wgRestrictDisplayTitle must be false. &amp;lt;/li&amp;gt;   &lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;table style=&amp;quot;width:90%; margin-left:5%; margin-right:auto&amp;quot;&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
   &amp;lt;th style=&amp;quot;width:5%&amp;quot;&amp;gt;Test&amp;lt;/th&amp;gt;&lt;br /&gt;
   &amp;lt;th style=&amp;quot;width:30%&amp;quot;&amp;gt;config-schema.php&amp;lt;/th&amp;gt;&lt;br /&gt;
   &amp;lt;th style=&amp;quot;width:35%&amp;quot;&amp;gt;LocalSettings.php&amp;lt;/th&amp;gt;&lt;br /&gt;
   &amp;lt;th style=&amp;quot;width:30%&amp;quot;&amp;gt;Displayed Title&amp;lt;/th&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
   &amp;lt;td style=&amp;quot;text-align:center; font-weight:bold&amp;quot;&amp;gt;1&amp;lt;/td&amp;gt;&lt;br /&gt;
   &amp;lt;td&amp;gt;Default Configuration&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&#039;AllowDisplayTitle&#039; =&amp;gt; true,&lt;br /&gt;
&#039;RestrictDisplayTitle&#039; =&amp;gt; true,&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
   &amp;lt;/td&amp;gt;&lt;br /&gt;
   &amp;lt;td&amp;gt;&amp;lt;p&amp;gt;No Settings&amp;lt;/p&amp;gt;&lt;br /&gt;
   &amp;lt;/td&amp;gt;&lt;br /&gt;
   &amp;lt;td&amp;gt;&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;australia&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Australia&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt; &amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
   &amp;lt;td style=&amp;quot;text-align:center; font-weight:bold&amp;quot;&amp;gt;2&amp;lt;/td&amp;gt;&lt;br /&gt;
   &amp;lt;td&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
&#039;AllowDisplayTitle&#039; =&amp;gt; true,&lt;br /&gt;
&#039;RestrictDisplayTitle&#039; =&amp;gt; true,&lt;br /&gt;
   &amp;lt;/pre&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
   &amp;lt;td&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
#$wgAllowDisplayTitle = &#039;true&#039;;&lt;br /&gt;
$wgRestrictDisplayTitle = &#039;false&#039;;&lt;br /&gt;
   &amp;lt;/pre&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
   &amp;lt;td&amp;gt;&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;australia&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Australia&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
   &amp;lt;td style=&amp;quot;text-align:center; font-weight:bold&amp;quot;&amp;gt;3&amp;lt;/td&amp;gt;&lt;br /&gt;
   &amp;lt;td&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
&#039;AllowDisplayTitle&#039; =&amp;gt; false,&lt;br /&gt;
&#039;RestrictDisplayTitle&#039; =&amp;gt; true,&lt;br /&gt;
   &amp;lt;/pre&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
   &amp;lt;td&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
$wgAllowDisplayTitle = &#039;true&#039;;&lt;br /&gt;
$wgRestrictDisplayTitle = &#039;false&#039;;&lt;br /&gt;
   &amp;lt;/pre&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
   &amp;lt;td&amp;gt;&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;australia&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Australia&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
   &amp;lt;td style=&amp;quot;text-align:center; font-weight:bold&amp;quot;&amp;gt;4&amp;lt;/td&amp;gt;&lt;br /&gt;
   &amp;lt;td&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
&#039;AllowDisplayTitle&#039; =&amp;gt; false,&lt;br /&gt;
&#039;RestrictDisplayTitle&#039; =&amp;gt; false,&lt;br /&gt;
   &amp;lt;/pre&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
   &amp;lt;td&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
$wgAllowDisplayTitle = &#039;true&#039;;&lt;br /&gt;
$wgRestrictDisplayTitle = &#039;false&#039;;&lt;br /&gt;
   &amp;lt;/pre&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
   &amp;lt;td&amp;gt;&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;australia&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Australia&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
   &amp;lt;td style=&amp;quot;text-align:center; font-weight:bold&amp;quot;&amp;gt;5&amp;lt;/td&amp;gt;&lt;br /&gt;
   &amp;lt;td&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
&#039;AllowDisplayTitle&#039; =&amp;gt; true,&lt;br /&gt;
&#039;RestrictDisplayTitle&#039; =&amp;gt; false,&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
   &amp;lt;/td&amp;gt;&lt;br /&gt;
   &amp;lt;td&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
$wgAllowDisplayTitle = &#039;true&#039;;&lt;br /&gt;
$wgRestrictDisplayTitle = &#039;false&#039;;&lt;br /&gt;
   &amp;lt;/pre&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
   &amp;lt;td&amp;gt;&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;australia&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Australia&amp;lt;/li&amp;gt;&amp;lt;ol&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;tr&amp;gt;&lt;br /&gt;
   &amp;lt;td style=&amp;quot;text-align:center; font-weight:bold&amp;quot;&amp;gt;6&amp;lt;/td&amp;gt;&lt;br /&gt;
   &amp;lt;td&amp;gt;&amp;lt;pre&amp;gt;&lt;br /&gt;
&#039;AllowDisplayTitle&#039; =&amp;gt; true,&lt;br /&gt;
&#039;RestrictDisplayTitle&#039; =&amp;gt; false,&lt;br /&gt;
   &amp;lt;/pre&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
   &amp;lt;td&amp;gt;&amp;lt;p&amp;gt;No Settings&amp;lt;/p&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
   &amp;lt;td&amp;gt;&amp;lt;ol&amp;gt;&amp;lt;li&amp;gt;australia&amp;lt;/li&amp;gt;&amp;lt;li&amp;gt;Australia and Malaysia Airlines Flight MH370&amp;lt;/li&amp;gt;&amp;lt;/ol&amp;gt;&amp;lt;/td&amp;gt;&lt;br /&gt;
&amp;lt;/tr&amp;gt;&lt;br /&gt;
&amp;lt;/table&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Results&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;ol&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;MediaWiki default settings in config-schema.php are applied as intended. A radically different title is not displayed.&amp;lt;/li&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Setting $wgRestrictDisplayTitle to false in LocalSettings.php does not over-ride the default setting of false in config-schema.php&amp;lt;/li&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Setting $wgAllowDisplayTitle to true in LocalSettings.php does over-ride a setting of false in config-schema.php&amp;lt;br /&amp;gt;Setting $wgRestrictDisplayTitle to false in LocalSettings.php does not over-ride the default setting of false in config-schema.php&amp;lt;/li&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Setting $wgAllowDisplayTitle to true in LocalSettings.php does over-ride a setting of false in config-schema.php&amp;lt;br /&amp;gt;However, although $wgRestrictDisplayTitle is false in config-schema.php and in LocalSettings.php the setting has no effect - the longer title is not displayed as it should.&amp;lt;/li&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;$wgAllowDisplayTitle is true in config-schema.php and also in LocalSettings.php and is applied as intended.&amp;lt;br /&amp;gt;$wgRestrictDisplayTitle is false in config-schema.php and is also false in LocalSettings.php. However, as in Test 4 the alternate (longer) page title is not displayed.&amp;lt;br /&amp;gt;Even when the configuration is the same in both locations the configuration of $wgRestrictDisplayTitle = false is not applied. &amp;lt;b&amp;gt;This does not make sense.&amp;lt;/b&amp;gt;&amp;lt;br /&amp;gt;I have triple-checked this result and have no explanation for this outcome.&amp;lt;/li&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;When there is no configuration in LocalSettings.php (similar to Test 1) the settings in config-schema.php are applied, and the outcome is correct.&amp;lt;/li&amp;gt;&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Solution&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;There is no &#039;solution&#039;, only a &#039;work-around&#039;.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;I have edited /w/includes/config-schema.php as below. This is not good practice. When upgrading MediaWiki version this change may need to be done to the new source code. The comments will help to find the settings.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# default is &#039;AllowDisplayTitle&#039; =&amp;gt; true,			&lt;br /&gt;
			&#039;AllowDisplayTitle&#039; =&amp;gt; true,&lt;br /&gt;
# default is &#039;RestrictDisplayTitle&#039; =&amp;gt; true,			&lt;br /&gt;
			&#039;RestrictDisplayTitle&#039; =&amp;gt; false,&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;And in LocalSettings.php I added the following:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
# 6 August 2025 Allow DisplayTitle&lt;br /&gt;
# $wgAllowDisplayTitle = &#039;true&#039;; is true by default&lt;br /&gt;
# $wgRestrictDisplayTitle = &#039;false&#039;; is configured in&lt;br /&gt;
# /w/includes/config-schema.php and does not apply if configured here&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Application&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;On the {{MH370Site}} website the change to each country page will be quite simple. The next version release will use this feature.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The News pages will benefit too, and the application is more interesting because it will involve templates. See &amp;lt;b&amp;gt;[[DisplayTitle and Templates]].&amp;lt;/b&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;How to find a specific configuration in MediaWiki&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Before writing this article I was not familiar with the file /w/includes/config-schema.php. I had to search for the configuration for $wgRestrictDisplayTitle.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;That is now the subject of a separate article - &amp;lt;b&amp;gt;[[MediaWiki Default Settings]]&amp;lt;/b&amp;gt;.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Links&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
   &amp;lt;dt&amp;gt;Manual:Page title&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Manual:Page_title&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Manual:Page_title&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Display title&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Display_title&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Display_title&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Help:Magic words #DISPLAYTITLE&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Help:Magic_words#DISPLAYTITLE&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Help:Magic_words#DISPLAYTITLE&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Manual:$wgAllowDisplayTitle&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Manual:$wgAllowDisplayTitle&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Manual:$wgAllowDisplayTitle&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Manual:$wgRestrictDisplayTitle&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Manual:$wgRestrictDisplayTitle&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Manual:$wgRestrictDisplayTitle&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt; &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot; &amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
[[Category:Configure]]&lt;br /&gt;
[[Category:Customise]]&lt;br /&gt;
[[Category:$wgAllowDisplayTitle]]&lt;br /&gt;
[[Category:$wgRestrictDisplayTitle]]&lt;br /&gt;
[[Category:Magic Words]]&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1831</id>
		<title>Tab Removal</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1831"/>
		<updated>2025-08-21T10:16:01Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PageHeader}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;On the {{MH370Site}} website I wanted no Tabs. I wanted the page head to be uncluttered. And I did not want to open discussion pages (Talk) or allow the page source to be viewed. I just wanted it to look clean and simple.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Tab removal was achieved by adding the following to Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-main { display:none !important; }  /* Page tab */&lt;br /&gt;
#ca-talk { display: none !important; }       /* Discussion Tab */&lt;br /&gt;
#ca-history { display: none !important;}     /* View History / History Tab */&lt;br /&gt;
#ca-viewsource { display: none !important; } /* Users without Edit permission could still view the page source */&lt;br /&gt;
#ca-view { display:none!important; }         /* Read Tab (Vector Skin) */&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Edit tab is available to a logged-in user. And &#039;More&#039; opens the dropdown menu for Delete, Move and Protect. But these are not visible to the anonymous users.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;ca-nstab&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;In the Main namespace the first Tab is labelled &amp;lt;i&amp;gt;Page&amp;lt;/i&amp;gt;.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:MainPageTab.jpg|alt=Page Tab|Page Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt; The label can be changed - see &amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Snippets/Main_Page_tab&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Snippets/Main Page tab&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;. In Wikipedia the &#039;Page&#039; Tab is labelled &#039;Article&#039;.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Also, in Wikipedia, a mouse-over the Article Tab reveals a message &#039;View the content page [alt-shift-c]&#039;. This keyboard shortcut is supposed to make it easy for users to quickly switch between the Content and other views of the page, like Discussion (or talk). Wouldn&#039;t it be simpler to just click on the Tab? But in the background is a set of Access Keys with functionality modelled on the HTML accesskey attribute. Browsers typically use Alt + Accesskey, or Alt +Shift + Accesskey. In MediaWiki the Accesskey can be defined by creating a page in the MediaWiki Namespace, for example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MediaWiki:Accesskey-ca-nstab-main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Add a single letter in this page, a c perhaps, and that will become the keyboard shortcut (with alt + shift) to switch the page view to the article or content.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The components of the page name are &amp;lt;i&amp;gt;Accesskey&amp;lt;/i&amp;gt;, then the prefix &amp;lt;i&amp;gt;ca-nstab&amp;lt;/i&amp;gt;, then &amp;lt;i&amp;gt;main&amp;lt;/i&amp;gt;. This defines the accesskey for the Main namespace only.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;However, a more common requirement may be to remove the &#039;Page&#039; tab completely. This is simple by adding the line &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; to MediaWiki:Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So, to remove the Tab which relates to a namespace, and using the format of the working example &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; it should be possible to remove the Tab associated with other namespaces by adding a simplar line to MediaWiki:Common.css. For example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-&amp;lt;i&amp;gt;namespace_name&amp;lt;/i&amp;gt; { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This website has a public namespace called Snippets. Here is the associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NstabSnippets.jpg|alt=Namespace Tab for Snippets namespace|Namespace Tab for Snippets namespace]]&lt;br /&gt;
&amp;lt;p&amp;gt;Now this line has been added to MediaWiki:Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-snippets { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; And here is the result, with a page name included to show the namespace prefix Snippets: And there is no associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SnippetsNoTab.jpg|alt=Page in Snippets namespace without a Tab|Page in Snippets namespace without a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;Can the namespace be identified by Number instead of Name?&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Snippets namespace was defined like this - &amp;lt;code&amp;gt;define(&amp;quot;NS_SNIPPETS&amp;quot;, 3400);&amp;lt;/code&amp;gt; &amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Discussion (Talk) tab can be removed by specifying the namespace by number, for example this works:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;body.ns-3400 #ca-talk { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But the tab labelled Snippets cannot be removed by using similar CSS.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Tab Removal in the {{MH370Site}} Website&amp;lt;/h2&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Namespace Tabs&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;There are several namespaces which hold public content. Two namespaces had unfriendly names:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Namespace name appeared in a Tab but hadn&#039;t bothered me until now.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015inTab.jpg|alt=Namespace FI_2015 in a Tab|Namespace FI_2015 in a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;To make the displayed names more friendly I changed the name of each namespace to a descriptive title and retained the original name as the alias. This is quite safe - the namespace Number is critical and changing it effectively causes all the content to be lost and a new empty namespace to be created. So don&#039;t do that!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The new namespace names are:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information (2015) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report (2018) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But now the page head looks like this:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;And&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Removing the Tab with the Namesace Name&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The page source, shown by Firefox Web developer Tools, contains the various classes, including the id ca-nstab-safety_investigation_report_(2018). A similar id is generated for the Factual Information (2015).&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:LeftNavCSS.jpg|alt=Page source showing Tab in Left Navigation Tab|Page source showing Tab in Left Navigation Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;In the capture above, the text is clearly ca-nstab-safety_investigation_report_(2018). In the previous example, the CSS &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-snippets { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; was effective in removing the tab labelled Snippets. So, logically, one would think that this line in MediaWiki:Common.css would be effective too:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-safety_investigation_report_(2018) { display: none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But it isn&#039;t. Doesn&#039;t work. &amp;lt;b&amp;gt;The brackets (  ) are the problem&amp;lt;/b&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;I re-named each namespace:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information 2015 &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report 2018 &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The associated tabs have been removed with these lines added to MediaWiki.Common.css:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-factual_information_2015 { display: none !important; }&lt;br /&gt;
&lt;br /&gt;
#ca-nstab-safety_investigation_report_2018 { display: none !important; }&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Success!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h5&amp;gt;A Workaround&amp;lt;/h5&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is a workaround. It worked, but there had to be a better way, and I think I found it, as above.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Tab containing the Namespace name has a white background. I figure that one way to check if you have identified a target item is to change its colour.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is the CSS creating the white background:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NStabWhiteBackground.jpg|alt=Identifying the class by its white background|Identifying the class by its white background]]&lt;br /&gt;
&amp;lt;p&amp;gt;I added this to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { background:green; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:GreenTab.jpg|alt=Namespace tab with green background|Namespace tab with green background]]&lt;br /&gt;
&amp;lt;p&amp;gt;Bold colours prove the CSS is functional!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So now I have added this line to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { display: none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018NoTab.jpg|alt=Page Head with no Tab for namespace name|Page Head with no Tab for namespace name]]&lt;br /&gt;
&amp;lt;p&amp;gt;The applied CSS is captured here:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:WhiteTabNotDisplayed.jpg|alt=White namespace tab not displayed in page head|White namespace tab not displayed in page head]]&lt;br /&gt;
&amp;lt;p&amp;gt;As you can see, the tab still has a white background, but the display:none has finally been effective. It also works for all custom namespaces./p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Next Steps&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Apply similar CSS to remove tabs associated with other namespaces.&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Use&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Links&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
   &amp;lt;dt&amp;gt;Manual:Removing tabs&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Hide page tabs &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;How to remove the top navigation page tabs in MediaWiki &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt; &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot; &amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1830</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1830"/>
		<updated>2025-08-21T09:46:27Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* #ca-nstab-ns_3400 { display:none !important; } */&lt;br /&gt;
&lt;br /&gt;
/* body.ns-0 #ca-talk { display:none !important; } */ /* this works */&lt;br /&gt;
&lt;br /&gt;
/* body.ns-0 #ca-nstab { display:none !important; } doesn&#039;t work */&lt;br /&gt;
&lt;br /&gt;
body.ns-3400 #ca-talk { display:none !important; } /* this works */&lt;br /&gt;
&lt;br /&gt;
body.ns-3400 #ca-nstab-snippets { display:none !important; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 5 August 2025 Added Colors for use in Sidebar and MediaWiki interface */&lt;br /&gt;
&lt;br /&gt;
/* Steel Blue */&lt;br /&gt;
:root { --SteelBlue-80: #B6CEE2;&lt;br /&gt;
        --SteelBlue-70: #91B6D4;&lt;br /&gt;
        --SteelBlue-60: #6C9DC6;&lt;br /&gt;
        --SteelBlue-50: #4785B8;&lt;br /&gt;
        --SteelBlue-40: #396A93;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tan */&lt;br /&gt;
:root { --Tan-90: #F1E7DA;&lt;br /&gt;
        --Tan-80: #E2CFB6;&lt;br /&gt;
        --Tan-70: #D4B791;&lt;br /&gt;
        --Tan-60: #C69F6C;&lt;br /&gt;
        --Tan-50: #B88747;&lt;br /&gt;
        --Tan-40: #936C39;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* Items sorted with lightest color shade first, approximating a Z order */&lt;br /&gt;
&lt;br /&gt;
#mw-head { background-color: var(--SteelBlue-80); } /* full width at top of screen, behind logo */&lt;br /&gt;
&lt;br /&gt;
/* mw-body-content is in front of mw-body */&lt;br /&gt;
.mw-body-content { background-color: #F2F2F2; border-radius: 1em; padding-top:2em; padding-bottom:2em; padding-left:2.5em; padding-right:2.5em; } &lt;br /&gt;
&lt;br /&gt;
.mw-body { background-color: var(--SteelBlue-70); } /* is background for everything below header and right of left panel and down to footer */&lt;br /&gt;
&lt;br /&gt;
.mw-footer { background-color: var(--SteelBlue-60); } /* does not extend to bottom of the screen */&lt;br /&gt;
&lt;br /&gt;
#mw-panel.vector-legacy-sidebar.collapsible-nav { background-color: var(--SteelBlue-50); } /* background for menu but extends to top of screen and behind logo and in front of header */&lt;br /&gt;
&lt;br /&gt;
body { background-color: var(--SteelBlue-40); } /* everything below mw-head, full width of screen, to bottom of screen */&lt;br /&gt;
&lt;br /&gt;
.catlinks { background-color: #bdccdb; } /* border on category row */&lt;br /&gt;
.mw-normal-catlinks { background-color: #ced8e4; padding-left:20px; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 2 August added class to standardised margins when displaying a category tree */&lt;br /&gt;
.displayCatTree { margin-left:4em; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 1 August 2025 Added a class to standardise page headers, plus a variant for category pages */&lt;br /&gt;
&lt;br /&gt;
.header { width:90%; &lt;br /&gt;
          margin-left:auto; margin-right:auto; margin-bottom:1em; padding-top:10px; padding-bottom:10px; &lt;br /&gt;
          text-align:justify;&lt;br /&gt;
          background-color: #cce6ff; border-color: #cce6ff; border-radius: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.cat { background-color: #e8f2fc; border-color: #e8f2fc; } /* pale shade of blue for header on category pages */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 attempt to indent unordered lists */&lt;br /&gt;
.mw-body-content ul { display:block; position:relative; left:1em; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } /* mw-body-content limits scope */&lt;br /&gt;
/* .ulNormal  { display:block; position:relative; left:2vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 added style for quoted text, adapted from mh370wiki.net, used instead of blockquote */&lt;br /&gt;
&lt;br /&gt;
.quote { width: 90%; background: #FAFAFA;    /* contrast against white page background */&lt;br /&gt;
         padding-left: 1em;; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em;  /* was px  */&lt;br /&gt;
         margin-left:auto; margin-right:auto; margin-top:0.5em; margin-bottom:0.5em;  &lt;br /&gt;
         text-align:justify; color: #000000;     /* black */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 27 July 2025 added left margin to images */&lt;br /&gt;
.mw-default-size { margin-left: 2em; } /* this is the container. applies to all images */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 25 July 2025 added style to indent &amp;lt;pre&amp;gt; Note: No dot required before pre */&lt;br /&gt;
&lt;br /&gt;
pre { width: 90%; margin-left: auto; margin-right: auto; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 22 July 2025 Added style to enlarge fonts on Tooltips but currently unable to change tooltip width */&lt;br /&gt;
&lt;br /&gt;
.mw-lingo-definition-text { font-size:125%; } /* Tooltip is also styled as a qtip in jquery.qtip.css */&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 20 July 2025 Fluid Typography and Font Variables */&lt;br /&gt;
/* Copied from mh370wiki.net and adapted for use here */&lt;br /&gt;
&lt;br /&gt;
/* Fluid Typography  - see Responsive And Fluid Typography With vh And vw Units&lt;br /&gt;
https://www.smashingmagazine.com/2016/05/fluid-typography/ &lt;br /&gt;
Unlike responsive typography, which changes only at set breakpoints,&lt;br /&gt;
fluid typography resizes smoothly to match any device width.&lt;br /&gt;
*/&lt;br /&gt;
/* Variables for font size ( to be used in Vector.css ) see https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
&lt;br /&gt;
/*   Clamp() for min, preferred, max font size see https://developer.mozilla.org/en-US/docs/Web/CSS/clamp() */&lt;br /&gt;
/* Notes on font sizes&lt;br /&gt;
The default text size in browsers is 16px. So, the default size of 1em is 16px.&lt;br /&gt;
rem (root em) references the base font size of the document.&lt;br /&gt;
Assuming that the base font size is 16px, we get the following values:&lt;br /&gt;
1rem = 16px&lt;br /&gt;
1.5rem = 24px&lt;br /&gt;
0.5rem = 8px&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/* Use clamp ( min preferred max ) */&lt;br /&gt;
:root { font-size: clamp( 1vw, 1.05rem, 1.2vw ); } &lt;br /&gt;
&lt;br /&gt;
/* Font sizes using variables from https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
/* Example   font-size: var(--font-size-100);   */&lt;br /&gt;
:root { --font-size-625: 62.5%;  /* 62.5% of root font size */&lt;br /&gt;
        --font-size-875: 87.5%;  /* 87.5% x root font size  */&lt;br /&gt;
        --font-size-090: 90%;    /* 90% x root font size    */&lt;br /&gt;
        --font-size-095: 95%;    /* 95% x root font size    */&lt;br /&gt;
        --font-size-100: 100%;   /* 100% = root font size   */&lt;br /&gt;
        --font-size-105: 105%;   /* 105% x root font size   */&lt;br /&gt;
        --font-size-110: 110%;   /* 110% x root font size   */&lt;br /&gt;
        --font-size-115: 115%;   /* 115% x root font size   */&lt;br /&gt;
        --font-size-120: 120%;   /* 120% x root font size   */        &lt;br /&gt;
        --font-size-125: 125%;   /* 125% x root font size   */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text Styles using Font Variables             */&lt;br /&gt;
&lt;br /&gt;
/* Font Sizes */&lt;br /&gt;
body { font-size: var(--font-size-100); }&lt;br /&gt;
p { font-size: var(--font-size-100); }&lt;br /&gt;
dl dt dd { font-size: var(--font-size-100); }&lt;br /&gt;
dd { margin-bottom: 1em; } /* added 11 Oct 2022 to space between a dd and the next dt */&lt;br /&gt;
/* ul ol li { font-size: var(--font-size-100); } */&lt;br /&gt;
&lt;br /&gt;
/* Headings are sized by percentage over the base font and also resize based on viewport width */&lt;br /&gt;
h1 {font-size: var(--font-size-125);}   	&lt;br /&gt;
h2 {font-size: var(--font-size-120);}   /* h2 was previously not defined */&lt;br /&gt;
h3 {font-size: var(--font-size-115);}&lt;br /&gt;
h4 {font-size: var(--font-size-110);}&lt;br /&gt;
h5 {font-size: var(--font-size-105);}&lt;br /&gt;
/* h6 {font-size: var(--font-size-100);} modified 4 Jan 2025 */&lt;br /&gt;
h6 {font-size: var(--font-size-090);}&lt;br /&gt;
&lt;br /&gt;
h1, h3, h4, h5, h6 {&lt;br /&gt;
	font-family: Arial, Helvetica, sans-serif;&lt;br /&gt;
	color: var(--clr-DeepPurple-base-30); &lt;br /&gt;
	font-weight: 600;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text layout using padding - use vw for responsive */&lt;br /&gt;
/* 10px = 0.625rem; 20px = 1.25rem; 30px = 1.875rem; 40px = 2.5rem; */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
h5 { padding-left: 0.5vw; } &lt;br /&gt;
h6 { padding-left: 0.5vw; } &lt;br /&gt;
p  { padding-left: 1vw; padding-right:1vw; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* ordered list ol and altered padding for a nested list */&lt;br /&gt;
ol { display:block; position:relative; left:0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; padding-right:0.9vw; &lt;br /&gt;
     &amp;amp; ol { display:block; position:relative; left:-0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; list-style-type:lower-roman; }&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
/* Definition List */&lt;br /&gt;
dl { padding-left: 2.5vw; padding-right:2.5vw; } &lt;br /&gt;
dt { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
dd { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* 11 July 2025 Rows and Columns     */&lt;br /&gt;
&lt;br /&gt;
/* 26 July 2020 New row/column layout */&lt;br /&gt;
/* July 2025 Copied from www.mh370wiki.net ( with minor adjustments ) */&lt;br /&gt;
.Row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.column-left { display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-right: 1em; }&lt;br /&gt;
.column-center {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; margin-left: 1em; margin-right: 1em; }&lt;br /&gt;
.column-right {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-left: 1em; }&lt;br /&gt;
	&lt;br /&gt;
/* flex-basis determines column width */	&lt;br /&gt;
.col-width-75 { flex-basis: 75%; flex-shrink: 15;} /* usually main column 75% and Comments or Notes 25% */&lt;br /&gt;
.col-width-70 { flex-basis: 65%; flex-shrink: 13;} /* added 28 Oct 2020 to use with col-width-30 even though that is actually 33% */&lt;br /&gt;
.col-width-60 { flex-basis: 60%; flex-shrink: 12;} /* two columns in ratio 3:2 */&lt;br /&gt;
.col-width-50 { flex-basis: 50%; flex-shrink: 10;} /* two equal columns */&lt;br /&gt;
.col-width-40 { flex-basis: 40%; flex-shrink: 8;} &lt;br /&gt;
/*.col-width-30 { flex-basis: 33%; flex-shrink: 7;}  */&lt;br /&gt;
/* .col-width-30 { flex: 1 1 0;} /* 16 Nov 2020 If columns are equal then flex should be 1 1 0 */&lt;br /&gt;
.col-width-30 { flex-basis: 0; }&lt;br /&gt;
.col-width-25 { flex-basis: 25%; flex-shrink: 5;} /* usually right column  */&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1829</id>
		<title>Tab Removal</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1829"/>
		<updated>2025-08-21T09:44:12Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PageHeader}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;On the {{MH370Site}} website I wanted no Tabs. I wanted the page head to be uncluttered. And I did not want to open discussion pages (Talk) or allow the page source to be viewed. I just wanted it to look clean and simple.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Tab removal was achieved by adding the following to Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-main { display:none !important; }  /* Page tab */&lt;br /&gt;
#ca-talk { display: none !important; }       /* Discussion Tab */&lt;br /&gt;
#ca-history { display: none !important;}     /* View History / History Tab */&lt;br /&gt;
#ca-viewsource { display: none !important; } /* Users without Edit permission could still view the page source */&lt;br /&gt;
#ca-view { display:none!important; }         /* Read Tab (Vector Skin) */&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Edit tab is available to a logged-in user. And &#039;More&#039; opens the dropdown menu for Delete, Move and Protect. But these are not visible to the anonymous users.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;ca-nstab&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;In the Main namespace the first Tab is labelled &amp;lt;i&amp;gt;Page&amp;lt;/i&amp;gt;.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:MainPageTab.jpg|alt=Page Tab|Page Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt; The label can be changed - see &amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Snippets/Main_Page_tab&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Snippets/Main Page tab&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;. In Wikipedia the &#039;Page&#039; Tab is labelled &#039;Article&#039;.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Also, in Wikipedia, a mouse-over the Article Tab reveals a message &#039;View the content page [alt-shift-c]&#039;. This keyboard shortcut is supposed to make it easy for users to quickly switch between the Content and other views of the page, like Discussion (or talk). Wouldn&#039;t it be simpler to just click on the Tab? But in the background is a set of Access Keys with functionality modelled on the HTML accesskey attribute. Browsers typically use Alt + Accesskey, or Alt +Shift + Accesskey. In MediaWiki the Accesskey can be defined by creating a page in the MediaWiki Namespace, for example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MediaWiki:Accesskey-ca-nstab-main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Add a single letter in this page, a c perhaps, and that will become the keyboard shortcut (with alt + shift) to switch the page view to the article or content.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The components of the page name are &amp;lt;i&amp;gt;Accesskey&amp;lt;/i&amp;gt;, then the prefix &amp;lt;i&amp;gt;ca-nstab&amp;lt;/i&amp;gt;, then &amp;lt;i&amp;gt;main&amp;lt;/i&amp;gt;. This defines the accesskey for the Main namespace only.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;However, a more common requirement may be to remove the &#039;Page&#039; tab completely. This is simple by adding the line &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; to MediaWiki:Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So, to remove the Tab which relates to a namespace, and using the format of the working example &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; it should be possible to remove the Tab associated with other namespaces by adding a simplar line to MediaWiki:Common.css. For example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-&amp;lt;i&amp;gt;namespace_name&amp;lt;/i&amp;gt; { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This website has a public namespace called Snippets. Here is the associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NstabSnippets.jpg|alt=Namespace Tab for Snippets namespace|Namespace Tab for Snippets namespace]]&lt;br /&gt;
&amp;lt;p&amp;gt;Now this line has been added to MediaWiki:Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-snippets { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; And here is the result, with a page name included to show the namespace prefix Snippets: And there is no associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SnippetsNoTab.jpg|alt=Page in Snippets namespace without a Tab|Page in Snippets namespace without a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;Can the namespace be identified by Number instead of Name?&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Snippets namespace was defined like this - &amp;lt;code&amp;gt;define(&amp;quot;NS_SNIPPETS&amp;quot;, 3400);&amp;lt;/code&amp;gt; &amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Discussion (Talk) tab can be removed by specifying the namespace by number, for example this works:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;body.ns-3400 #ca-talk { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But the tab labelled Snippets cannot be removed by using similar CSS.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Tab Removal in thge {{MH370Site}} Website&amp;lt;/h2&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Namespace Tabs&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;There are several namespaces which hold public content. Two namespaces had unfriendly names:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Namespace name appeared in a Tab but hadn&#039;t bothered me until now.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015inTab.jpg|alt=Namespace FI_2015 in a Tab|Namespace FI_2015 in a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;To make the displayed names more friendly I changed the name of each namespace to a descriptive title and retained the original name as the alias. This is quite safe - the namespace Number is critical and changing it effectively causes all the content to be lost and a new empty namespace to be created. So don&#039;t do that!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The new namespace names are:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information (2015) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report (2018) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But now the page head looks like this:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;And&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Removing the Tab with the Namesace Name&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The page source, shown by Firefox Web developer Tools, contains the various classes, including the id ca-nstab-safety_investigation_report_(2018). A similar id is generated for the Factual Information (2015).&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:LeftNavCSS.jpg|alt=Page source showing Tab in Left Navigation Tab|Page source showing Tab in Left Navigation Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;In the capture above, the text is clearly ca-nstab-safety_investigation_report_(2018). In the previous example, the CSS &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-snippets { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; was effective in removing the tab labelled Snippets. So, logically, one would think that this line in MediaWiki:Common.css would be effective too:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-safety_investigation_report_(2018) { display: none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But it isn&#039;t. Doesn&#039;t work.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;I tried the namespace alias too:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-SIR_2018 { display: none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;With no success.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;My usual approach is to identify the relevant class and ID and simply add CSS to Common.css to effectively &#039;display:none&#039;. But that did not work for me. Even identifying the namespace by either name or number in combination with ids and classes in different combinations and sequences was not successful.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;h5&amp;gt;A Workaround&amp;lt;/h5&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;I won&#039;t offer the following as a solution, even though it works, because there is probably a better way. If I find a solution I will update this article.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Tab containing the Namespace name has a white background. I figure that one way to check if you have identified a target item is to change its colour.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is the CSS creating the white background:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NStabWhiteBackground.jpg|alt=Identifying the class by its white background|Identifying the class by its white background]]&lt;br /&gt;
&amp;lt;p&amp;gt;I added this to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { background:green; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:GreenTab.jpg|alt=Namespace tab with green background|Namespace tab with green background]]&lt;br /&gt;
&amp;lt;p&amp;gt;Bold colours prove the CSS is functional!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So now I have added this line to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { display: none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018NoTab.jpg|alt=Page Head with no Tab for namespace name|Page Head with no Tab for namespace name]]&lt;br /&gt;
&amp;lt;p&amp;gt;The applied CSS is captured here:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:WhiteTabNotDisplayed.jpg|alt=White namespace tab not displayed in page head|White namespace tab not displayed in page head]]&lt;br /&gt;
&amp;lt;p&amp;gt;As you can see, the tab still has a white background, but the display:none has finally been effective. It also works for all custom namespaces./p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Next Steps&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;I cannot believe that this is the correct way to remove these tabs. If/when I find a better way I will update this article. I can also predict that any upgrade to the version of MediaWiki and the Vector skin will require that this workaround be checked.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Links&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
   &amp;lt;dt&amp;gt;Manual:Removing tabs&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Hide page tabs &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;How to remove the top navigation page tabs in MediaWiki &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt; &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot; &amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1828</id>
		<title>Tab Removal</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1828"/>
		<updated>2025-08-21T09:41:47Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PageHeader}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;On the {{MH370Site}} website I wanted no Tabs. I wanted the page head to be uncluttered. And I did not want to open discussion pages (Talk) or allow the page source to be viewed. I just wanted it to look clean and simple.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Tab removal was achieved by adding the following to Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-main { display:none !important; }  /* Page tab */&lt;br /&gt;
#ca-talk { display: none !important; }       /* Discussion Tab */&lt;br /&gt;
#ca-history { display: none !important;}     /* View History / History Tab */&lt;br /&gt;
#ca-viewsource { display: none !important; } /* Users without Edit permission could still view the page source */&lt;br /&gt;
#ca-view { display:none!important; }         /* Read Tab (Vector Skin) */&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Edit tab is available to a logged-in user. And &#039;More&#039; opens the dropdown menu for Delete, Move and Protect. But these are not visible to the anonymous users.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;ca-nstab&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;In the Main namespace the first Tab is labelled &amp;lt;i&amp;gt;Page&amp;lt;/i&amp;gt;.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:MainPageTab.jpg|alt=Page Tab|Page Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt; The label can be changed - see &amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Snippets/Main_Page_tab&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Snippets/Main Page tab&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;. In Wikipedia the &#039;Page&#039; Tab is labelled &#039;Article&#039;.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Also, in Wikipedia, a mouse-over the Article Tab reveals a message &#039;View the content page [alt-shift-c]&#039;. This keyboard shortcut is supposed to make it easy for users to quickly switch between the Content and other views of the page, like Discussion (or talk). Wouldn&#039;t it be simpler to just click on the Tab? But in the background is a set of Access Keys with functionality modelled on the HTML accesskey attribute. Browsers typically use Alt + Accesskey, or Alt +Shift + Accesskey. In MediaWiki the Accesskey can be defined by creating a page in the MediaWiki Namespace, for example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MediaWiki:Accesskey-ca-nstab-main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Add a single letter in this page, a c perhaps, and that will become the keyboard shortcut (with alt + shift) to switch the page view to the article or content.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The components of the page name are &amp;lt;i&amp;gt;Accesskey&amp;lt;/i&amp;gt;, then the prefix &amp;lt;i&amp;gt;ca-nstab&amp;lt;/i&amp;gt;, then &amp;lt;i&amp;gt;main&amp;lt;/i&amp;gt;. This defines the accesskey for the Main namespace only.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;However, a more common requirement may be to remove the &#039;Page&#039; tab completely. This is simple by adding the line &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; to MediaWiki:Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So, to remove the Tab which relates to a namespace, and using the format of the working example &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; it should be possible to remove the Tab associated with other namespaces by adding a simplar line to MediaWiki:Common.css. For example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-&amp;lt;i&amp;gt;namespace_name&amp;lt;/i&amp;gt; { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This website has a public namespace called Snippets. Here is the associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NstabSnippets.jpg|alt=Namespace Tab for Snippets namespace|Namespace Tab for Snippets namespace]]&lt;br /&gt;
&amp;lt;p&amp;gt;Now this line has been added to MediaWiki:Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-snippets { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; And here is the result, with a page name included to show the namespace prefix Snippets: And there is no associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SnippetsNoTab.jpg|alt=Page in Snippets namespace without a Tab|Page in Snippets namespace without a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;Can the namespace be identified by Number instead of Name?&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Snippets namespace was defined like this - &amp;lt;code&amp;gt;define(&amp;quot;NS_SNIPPETS&amp;quot;, 3400);&amp;lt;/code&amp;gt; &amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Discussion (Talk) tab can be removed by specifying the namespace by number, for example this works:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;body.ns-3400 #ca-talk { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But the tab labelled Snippets cannot be removed by using similar CSS.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Tab Removal in thge {{MH370Site}} Website&amp;lt;/h2&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Namespace Tabs&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;There are several namespaces which hold public content. Two namespaces had unfriendly names:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Namespace name appeared in a Tab but hadn&#039;t bothered me until now.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015inTab.jpg|alt=Namespace FI_2015 in a Tab|Namespace FI_2015 in a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;To make the displayed names more friendly I changed the name of each namespace to a descriptive title and retained the original name as the alias. This is quite safe - the namespace Number is critical and changing it effectively causes all the content to be lost and a new empty namespace to be created. So don&#039;t do that!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The new namespace names are:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information (2015) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report (2018) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But now the page head looks like this:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;And&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Removing the Tab with the Namesace Name&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The page source, shown by Firefox Web developer Tools, contains the various classes, including the id ca-nstab-safety_investigation_report_(2018). A similar id is generated for the Factual Information (2015).&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:LeftNavCSS.jpg|alt=Page source showing Tab in Left Navigation Tab|Page source showing Tab in Left Navigation Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;In the capture above, the text is clearly ca-nstab-safety_investigation_report_(2018). In the previous example, the CSS &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-snippets { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; was effective in removing the tab labelled Snippets. So, logically, one would think that this line in MediaWiki:Common.css would be effective too:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-safety_investigation_report_(2018) { display: none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But it isn&#039;t. Doesn&#039;t work.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;My usual approach is to identify the relevant class and ID and simply add CSS to Common.css to effectively &#039;display:none&#039;. But that did not work for me. Even identifying the namespace by either name or number in combination with ids and classes in different combinations and sequences was not successful.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;h5&amp;gt;A Workaround&amp;lt;/h5&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;I won&#039;t offer the following as a solution, even though it works, because there is probably a better way. If I find a solution I will update this article.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Tab containing the Namespace name has a white background. I figure that one way to check if you have identified a target item is to change its colour.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is the CSS creating the white background:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NStabWhiteBackground.jpg|alt=Identifying the class by its white background|Identifying the class by its white background]]&lt;br /&gt;
&amp;lt;p&amp;gt;I added this to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { background:green; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:GreenTab.jpg|alt=Namespace tab with green background|Namespace tab with green background]]&lt;br /&gt;
&amp;lt;p&amp;gt;Bold colours prove the CSS is functional!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So now I have added this line to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { display: none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018NoTab.jpg|alt=Page Head with no Tab for namespace name|Page Head with no Tab for namespace name]]&lt;br /&gt;
&amp;lt;p&amp;gt;The applied CSS is captured here:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:WhiteTabNotDisplayed.jpg|alt=White namespace tab not displayed in page head|White namespace tab not displayed in page head]]&lt;br /&gt;
&amp;lt;p&amp;gt;As you can see, the tab still has a white background, but the display:none has finally been effective. It also works for all custom namespaces./p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Next Steps&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;I cannot believe that this is the correct way to remove these tabs. If/when I find a better way I will update this article. I can also predict that any upgrade to the version of MediaWiki and the Vector skin will require that this workaround be checked.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Links&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
   &amp;lt;dt&amp;gt;Manual:Removing tabs&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Hide page tabs &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;How to remove the top navigation page tabs in MediaWiki &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt; &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot; &amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1827</id>
		<title>Tab Removal</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1827"/>
		<updated>2025-08-21T09:28:01Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PageHeader}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;On the {{MH370Site}} website I wanted no Tabs. I wanted the page head to be uncluttered. And I did not want to open discussion pages (Talk) or allow the page source to be viewed. I just wanted it to look clean and simple.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Tab removal was achieved by adding the following to Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-main { display:none !important; }  /* Page tab */&lt;br /&gt;
#ca-talk { display: none !important; }       /* Discussion Tab */&lt;br /&gt;
#ca-history { display: none !important;}     /* View History / History Tab */&lt;br /&gt;
#ca-viewsource { display: none !important; } /* Users without Edit permission could still view the page source */&lt;br /&gt;
#ca-view { display:none!important; }         /* Read Tab (Vector Skin) */&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Edit tab is available to a logged-in user. And &#039;More&#039; opens the dropdown menu for Delete, Move and Protect. But these are not visible to the anonymous users.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;ca-nstab&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;In the Main namespace the first Tab is labelled &amp;lt;i&amp;gt;Page&amp;lt;/i&amp;gt;.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:MainPageTab.jpg|alt=Page Tab|Page Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt; The label can be changed - see &amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Snippets/Main_Page_tab&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Snippets/Main Page tab&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;. In Wikipedia the &#039;Page&#039; Tab is labelled &#039;Article&#039;.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Also, in Wikipedia, a mouse-over the Article Tab reveals a message &#039;View the content page [alt-shift-c]&#039;. This keyboard shortcut is supposed to make it easy for users to quickly switch between the Content and other views of the page, like Discussion (or talk). Wouldn&#039;t it be simpler to just click on the Tab? But in the background is a set of Access Keys with functionality modelled on the HTML accesskey attribute. Browsers typically use Alt + Accesskey, or Alt +Shift + Accesskey. In MediaWiki the Accesskey can be defined by creating a page in the MediaWiki Namespace, for example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MediaWiki:Accesskey-ca-nstab-main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Add a single letter in this page, a c perhaps, and that will become the keyboard shortcut (with alt + shift) to switch the page view to the article or content.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The components of the page name are &amp;lt;i&amp;gt;Accesskey&amp;lt;/i&amp;gt;, then the prefix &amp;lt;i&amp;gt;ca-nstab&amp;lt;/i&amp;gt;, then &amp;lt;i&amp;gt;main&amp;lt;/i&amp;gt;. This defines the accesskey for the Main namespace only.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;However, a more common requirement may be to remove the &#039;Page&#039; tab completely. This is simple by adding the line &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; to MediaWiki:Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So, to remove the Tab which relates to a namespace, and using the format of the working example &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; it should be possible to remove the Tab associated with other namespaces by adding a simplar line to MediaWiki:Common.css. For example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-&amp;lt;i&amp;gt;namespace_name&amp;lt;/i&amp;gt; { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This website has a public namespace called Snippets. Here is the associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NstabSnippets.jpg|alt=Namespace Tab for Snippets namespace|Namespace Tab for Snippets namespace]]&lt;br /&gt;
&amp;lt;p&amp;gt;Now this line has been added to MediaWiki:Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-snippets { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; And here is the result, with a page name included to show the namespace prefix Snippets: And there is no associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SnippetsNoTab.jpg|alt=Page in Snippets namespace without a Tab|Page in Snippets namespace without a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;Can the namespace be identified by Number instead of Name?&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Snippets namespace was defined like this - &amp;lt;code&amp;gt;define(&amp;quot;NS_SNIPPETS&amp;quot;, 3400);&amp;lt;/code&amp;gt; &amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Discussion (Talk) tab can be removed by specifying the namespace by number, for example this works:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;body.ns-3400 #ca-talk { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But the tab labelled Snippets cannot be removed by using similar CSS.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Tab Removal in thge {{MH370Site}} Website&amp;lt;/h2&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Namespace Tabs&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;There are several namespaces which hold public content. Two namespaces had unfriendly names:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Namespace name appeared in a Tab but hadn&#039;t bothered me until now.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015inTab.jpg|alt=Namespace FI_2015 in a Tab|Namespace FI_2015 in a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;To make the displayed names more friendly I changed the name of each namespace to a descriptive title and retained the original name as the alias. This is quite safe - the namespace Number is critical and changing it effectively causes all the content to be lost and a new empty namespace to be created. So don&#039;t do that!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The new namespace names are:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information (2015) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report (2018) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But now the page head looks like this:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;And&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Removing the Tab with the Namesace Name&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The page source, shown by Firefox Web developer Tools, contains the various classes, including the id ca-nstab-safety_investigation_report_(2018). A similar id is generated for the Factual Information (2015).&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:LeftNavCSS.jpg|alt=Page source showing Tab in Left Navigation Tab|Page source showing Tab in Left Navigation Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;My usual approach is to identify the relevant class and ID and simply add CSS to Common.css to effectively &#039;display:none&#039;. But that did not work for me. Even identifying the namespace by either name or number in combination with ids and classes in different combinations and sequences was not successful.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;h5&amp;gt;A Workaround&amp;lt;/h5&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;I won&#039;t offer the following as a solution, even though it works, because there is probably a better way. If I find a solution I will update this article.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Tab containing the Namespace name has a white background. I figure that one way to check if you have identified a target item is to change its colour.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is the CSS creating the white background:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NStabWhiteBackground.jpg|alt=Identifying the class by its white background|Identifying the class by its white background]]&lt;br /&gt;
&amp;lt;p&amp;gt;I added this to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { background:green; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:GreenTab.jpg|alt=Namespace tab with green background|Namespace tab with green background]]&lt;br /&gt;
&amp;lt;p&amp;gt;Bold colours prove the CSS is functional!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So now I have added this line to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { display: none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018NoTab.jpg|alt=Page Head with no Tab for namespace name|Page Head with no Tab for namespace name]]&lt;br /&gt;
&amp;lt;p&amp;gt;The applied CSS is captured here:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:WhiteTabNotDisplayed.jpg|alt=White namespace tab not displayed in page head|White namespace tab not displayed in page head]]&lt;br /&gt;
&amp;lt;p&amp;gt;As you can see, the tab still has a white background, but the display:none has finally been effective. It also works for all custom namespaces./p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Next Steps&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;I cannot believe that this is the correct way to remove these tabs. If/when I find a better way I will update this article. I can also predict that any upgrade to the version of MediaWiki and the Vector skin will require that this workaround be checked.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Links&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
   &amp;lt;dt&amp;gt;Manual:Removing tabs&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Hide page tabs &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;How to remove the top navigation page tabs in MediaWiki &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt; &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot; &amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1826</id>
		<title>Tab Removal</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1826"/>
		<updated>2025-08-21T09:25:10Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PageHeader}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;On the {{MH370Site}} website I wanted no Tabs. I wanted the page head to be uncluttered. And I did not want to open discussion pages (Talk) or allow the page source to be viewed. I just wanted it to look clean and simple.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Tab removal was achieved by adding the following to Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-main { display:none !important; }  /* Page tab */&lt;br /&gt;
#ca-talk { display: none !important; }       /* Discussion Tab */&lt;br /&gt;
#ca-history { display: none !important;}     /* View History / History Tab */&lt;br /&gt;
#ca-viewsource { display: none !important; } /* Users without Edit permission could still view the page source */&lt;br /&gt;
#ca-view { display:none!important; }         /* Read Tab (Vector Skin) */&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Edit tab is available to a logged-in user. And &#039;More&#039; opens the dropdown menu for Delete, Move and Protect. But these are not visible to the anonymous users.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;ca-nstab&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;In the Main namespace the first Tab is labelled &amp;lt;i&amp;gt;Page&amp;lt;/i&amp;gt;.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:MainPageTab.jpg|alt=Page Tab|Page Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt; The label can be changed - see &amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Snippets/Main_Page_tab&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Snippets/Main Page tab&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;. In Wikipedia the &#039;Page&#039; Tab is labelled &#039;Article&#039;.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Also, in Wikipedia, a mouse-over the Article Tab reveals a message &#039;View the content page [alt-shift-c]&#039;. This keyboard shortcut is supposed to make it easy for users to quickly switch between the Content and other views of the page, like Discussion (or talk). Wouldn&#039;t it be simpler to just click on the Tab? But in the background is a set of Access Keys with functionality modelled on the HTML accesskey attribute. Browsers typically use Alt + Accesskey, or Alt +Shift + Accesskey. In MediaWiki the Accesskey can be defined by creating a page in the MediaWiki Namespace, for example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MediaWiki:Accesskey-ca-nstab-main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Add a single letter in this page, a c perhaps, and that will become the keyboard shortcut (with alt + shift) to switch the page view to the article or content.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The components of the page name are &amp;lt;i&amp;gt;Accesskey&amp;lt;/i&amp;gt;, then the prefix &amp;lt;i&amp;gt;ca-nstab&amp;lt;/i&amp;gt;, then &amp;lt;i&amp;gt;main&amp;lt;/i&amp;gt;. This defines the accesskey for the Main namespace only.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;However, a more common requirement may be to remove the &#039;Page&#039; tab completely. This is simple by adding the line &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; to MediaWiki:Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So, to remove the Tab which relates to a namespace, and using the format of the working example &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; it should be possible to remove the Tab associated with other namespaces by adding a simplar line to MediaWiki:Common.css. For example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-&amp;lt;i&amp;gt;namespace_name&amp;lt;/i&amp;gt; { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This website has a public namespace called Snippets. Here is the associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NstabSnippets.jpg|alt=Namespace Tab for Snippets namespace|Namespace Tab for Snippets namespace]]&lt;br /&gt;
&amp;lt;p&amp;gt;Now this line has been added to MediaWiki:Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-snippets { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; And here is the result - A page name has been included with the namespace prefix Snippets: to show that the article is in that namespace, but there is no associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SnippetsNoTab.jpg|alt=Page in Snippets namespace without a Tab|Page in Snippets namespace without a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;Can the namespace be identified by Number instead of Name?&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Snippets namespace was defined like this - &amp;lt;code&amp;gt;define(&amp;quot;NS_SNIPPETS&amp;quot;, 3400);&amp;lt;/code&amp;gt; so the line in MediaWiki:Common.css was changed to this:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Discussion (Talk) tab can be removed by specifying the namespace by number, for example this works:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;body.ns-3400 #ca-talk { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But the tab labelled Snippets cannot be removed by using similar CSS.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h2&amp;gt;Tab Removal in thge {{MH370Site}} Website&amp;lt;/h2&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Namespace Tabs&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;There are several namespaces which hold public content. Two namespaces had unfriendly names:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Namespace name appeared in a Tab but hadn&#039;t bothered me until now.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015inTab.jpg|alt=Namespace FI_2015 in a Tab|Namespace FI_2015 in a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;To make the displayed names more friendly I changed the name of each namespace to a descriptive title and retained the original name as the alias. This is quite safe - the namespace Number is critical and changing it effectively causes all the content to be lost and a new empty namespace to be created. So don&#039;t do that!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The new namespace names are:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information (2015) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report (2018) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But now the page head looks like this:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;And&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Removing the Tab with the Namesace Name&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The page source, shown by Firefox Web developer Tools, contains the various classes, including the id ca-nstab-safety_investigation_report_(2018). A similar id is generated for the Factual Information (2015).&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:LeftNavCSS.jpg|alt=Page source showing Tab in Left Navigation Tab|Page source showing Tab in Left Navigation Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;My usual approach is to identify the relevant class and ID and simply add CSS to Common.css to effectively &#039;display:none&#039;. But that did not work for me. Even identifying the namespace by either name or number in combination with ids and classes in different combinations and sequences was not successful.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;h5&amp;gt;A Workaround&amp;lt;/h5&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;I won&#039;t offer the following as a solution, even though it works, because there is probably a better way. If I find a solution I will update this article.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Tab containing the Namespace name has a white background. I figure that one way to check if you have identified a target item is to change its colour.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is the CSS creating the white background:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NStabWhiteBackground.jpg|alt=Identifying the class by its white background|Identifying the class by its white background]]&lt;br /&gt;
&amp;lt;p&amp;gt;I added this to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { background:green; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:GreenTab.jpg|alt=Namespace tab with green background|Namespace tab with green background]]&lt;br /&gt;
&amp;lt;p&amp;gt;Bold colours prove the CSS is functional!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So now I have added this line to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { display: none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018NoTab.jpg|alt=Page Head with no Tab for namespace name|Page Head with no Tab for namespace name]]&lt;br /&gt;
&amp;lt;p&amp;gt;The applied CSS is captured here:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:WhiteTabNotDisplayed.jpg|alt=White namespace tab not displayed in page head|White namespace tab not displayed in page head]]&lt;br /&gt;
&amp;lt;p&amp;gt;As you can see, the tab still has a white background, but the display:none has finally been effective. It also works for all custom namespaces./p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Next Steps&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;I cannot believe that this is the correct way to remove these tabs. If/when I find a better way I will update this article. I can also predict that any upgrade to the version of MediaWiki and the Vector skin will require that this workaround be checked.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Links&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
   &amp;lt;dt&amp;gt;Manual:Removing tabs&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Hide page tabs &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;How to remove the top navigation page tabs in MediaWiki &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt; &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot; &amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1825</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1825"/>
		<updated>2025-08-21T09:20:17Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* #ca-nstab-ns_3400 { display:none !important; } */&lt;br /&gt;
&lt;br /&gt;
/* body.ns-0 #ca-talk { display:none !important; } */ /* this works */&lt;br /&gt;
&lt;br /&gt;
/* body.ns-0 #ca-nstab { display:none !important; } doesn&#039;t work */&lt;br /&gt;
&lt;br /&gt;
body.ns-3400 #ca-talk { display:none !important; } /* this works */&lt;br /&gt;
&lt;br /&gt;
body.ns-3400 #ca-nstab-main { display:none !important; }&lt;br /&gt;
&lt;br /&gt;
/* 5 August 2025 Added Colors for use in Sidebar and MediaWiki interface */&lt;br /&gt;
&lt;br /&gt;
/* Steel Blue */&lt;br /&gt;
:root { --SteelBlue-80: #B6CEE2;&lt;br /&gt;
        --SteelBlue-70: #91B6D4;&lt;br /&gt;
        --SteelBlue-60: #6C9DC6;&lt;br /&gt;
        --SteelBlue-50: #4785B8;&lt;br /&gt;
        --SteelBlue-40: #396A93;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tan */&lt;br /&gt;
:root { --Tan-90: #F1E7DA;&lt;br /&gt;
        --Tan-80: #E2CFB6;&lt;br /&gt;
        --Tan-70: #D4B791;&lt;br /&gt;
        --Tan-60: #C69F6C;&lt;br /&gt;
        --Tan-50: #B88747;&lt;br /&gt;
        --Tan-40: #936C39;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* Items sorted with lightest color shade first, approximating a Z order */&lt;br /&gt;
&lt;br /&gt;
#mw-head { background-color: var(--SteelBlue-80); } /* full width at top of screen, behind logo */&lt;br /&gt;
&lt;br /&gt;
/* mw-body-content is in front of mw-body */&lt;br /&gt;
.mw-body-content { background-color: #F2F2F2; border-radius: 1em; padding-top:2em; padding-bottom:2em; padding-left:2.5em; padding-right:2.5em; } &lt;br /&gt;
&lt;br /&gt;
.mw-body { background-color: var(--SteelBlue-70); } /* is background for everything below header and right of left panel and down to footer */&lt;br /&gt;
&lt;br /&gt;
.mw-footer { background-color: var(--SteelBlue-60); } /* does not extend to bottom of the screen */&lt;br /&gt;
&lt;br /&gt;
#mw-panel.vector-legacy-sidebar.collapsible-nav { background-color: var(--SteelBlue-50); } /* background for menu but extends to top of screen and behind logo and in front of header */&lt;br /&gt;
&lt;br /&gt;
body { background-color: var(--SteelBlue-40); } /* everything below mw-head, full width of screen, to bottom of screen */&lt;br /&gt;
&lt;br /&gt;
.catlinks { background-color: #bdccdb; } /* border on category row */&lt;br /&gt;
.mw-normal-catlinks { background-color: #ced8e4; padding-left:20px; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 2 August added class to standardised margins when displaying a category tree */&lt;br /&gt;
.displayCatTree { margin-left:4em; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 1 August 2025 Added a class to standardise page headers, plus a variant for category pages */&lt;br /&gt;
&lt;br /&gt;
.header { width:90%; &lt;br /&gt;
          margin-left:auto; margin-right:auto; margin-bottom:1em; padding-top:10px; padding-bottom:10px; &lt;br /&gt;
          text-align:justify;&lt;br /&gt;
          background-color: #cce6ff; border-color: #cce6ff; border-radius: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.cat { background-color: #e8f2fc; border-color: #e8f2fc; } /* pale shade of blue for header on category pages */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 attempt to indent unordered lists */&lt;br /&gt;
.mw-body-content ul { display:block; position:relative; left:1em; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } /* mw-body-content limits scope */&lt;br /&gt;
/* .ulNormal  { display:block; position:relative; left:2vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 added style for quoted text, adapted from mh370wiki.net, used instead of blockquote */&lt;br /&gt;
&lt;br /&gt;
.quote { width: 90%; background: #FAFAFA;    /* contrast against white page background */&lt;br /&gt;
         padding-left: 1em;; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em;  /* was px  */&lt;br /&gt;
         margin-left:auto; margin-right:auto; margin-top:0.5em; margin-bottom:0.5em;  &lt;br /&gt;
         text-align:justify; color: #000000;     /* black */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 27 July 2025 added left margin to images */&lt;br /&gt;
.mw-default-size { margin-left: 2em; } /* this is the container. applies to all images */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 25 July 2025 added style to indent &amp;lt;pre&amp;gt; Note: No dot required before pre */&lt;br /&gt;
&lt;br /&gt;
pre { width: 90%; margin-left: auto; margin-right: auto; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 22 July 2025 Added style to enlarge fonts on Tooltips but currently unable to change tooltip width */&lt;br /&gt;
&lt;br /&gt;
.mw-lingo-definition-text { font-size:125%; } /* Tooltip is also styled as a qtip in jquery.qtip.css */&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 20 July 2025 Fluid Typography and Font Variables */&lt;br /&gt;
/* Copied from mh370wiki.net and adapted for use here */&lt;br /&gt;
&lt;br /&gt;
/* Fluid Typography  - see Responsive And Fluid Typography With vh And vw Units&lt;br /&gt;
https://www.smashingmagazine.com/2016/05/fluid-typography/ &lt;br /&gt;
Unlike responsive typography, which changes only at set breakpoints,&lt;br /&gt;
fluid typography resizes smoothly to match any device width.&lt;br /&gt;
*/&lt;br /&gt;
/* Variables for font size ( to be used in Vector.css ) see https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
&lt;br /&gt;
/*   Clamp() for min, preferred, max font size see https://developer.mozilla.org/en-US/docs/Web/CSS/clamp() */&lt;br /&gt;
/* Notes on font sizes&lt;br /&gt;
The default text size in browsers is 16px. So, the default size of 1em is 16px.&lt;br /&gt;
rem (root em) references the base font size of the document.&lt;br /&gt;
Assuming that the base font size is 16px, we get the following values:&lt;br /&gt;
1rem = 16px&lt;br /&gt;
1.5rem = 24px&lt;br /&gt;
0.5rem = 8px&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/* Use clamp ( min preferred max ) */&lt;br /&gt;
:root { font-size: clamp( 1vw, 1.05rem, 1.2vw ); } &lt;br /&gt;
&lt;br /&gt;
/* Font sizes using variables from https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
/* Example   font-size: var(--font-size-100);   */&lt;br /&gt;
:root { --font-size-625: 62.5%;  /* 62.5% of root font size */&lt;br /&gt;
        --font-size-875: 87.5%;  /* 87.5% x root font size  */&lt;br /&gt;
        --font-size-090: 90%;    /* 90% x root font size    */&lt;br /&gt;
        --font-size-095: 95%;    /* 95% x root font size    */&lt;br /&gt;
        --font-size-100: 100%;   /* 100% = root font size   */&lt;br /&gt;
        --font-size-105: 105%;   /* 105% x root font size   */&lt;br /&gt;
        --font-size-110: 110%;   /* 110% x root font size   */&lt;br /&gt;
        --font-size-115: 115%;   /* 115% x root font size   */&lt;br /&gt;
        --font-size-120: 120%;   /* 120% x root font size   */        &lt;br /&gt;
        --font-size-125: 125%;   /* 125% x root font size   */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text Styles using Font Variables             */&lt;br /&gt;
&lt;br /&gt;
/* Font Sizes */&lt;br /&gt;
body { font-size: var(--font-size-100); }&lt;br /&gt;
p { font-size: var(--font-size-100); }&lt;br /&gt;
dl dt dd { font-size: var(--font-size-100); }&lt;br /&gt;
dd { margin-bottom: 1em; } /* added 11 Oct 2022 to space between a dd and the next dt */&lt;br /&gt;
/* ul ol li { font-size: var(--font-size-100); } */&lt;br /&gt;
&lt;br /&gt;
/* Headings are sized by percentage over the base font and also resize based on viewport width */&lt;br /&gt;
h1 {font-size: var(--font-size-125);}   	&lt;br /&gt;
h2 {font-size: var(--font-size-120);}   /* h2 was previously not defined */&lt;br /&gt;
h3 {font-size: var(--font-size-115);}&lt;br /&gt;
h4 {font-size: var(--font-size-110);}&lt;br /&gt;
h5 {font-size: var(--font-size-105);}&lt;br /&gt;
/* h6 {font-size: var(--font-size-100);} modified 4 Jan 2025 */&lt;br /&gt;
h6 {font-size: var(--font-size-090);}&lt;br /&gt;
&lt;br /&gt;
h1, h3, h4, h5, h6 {&lt;br /&gt;
	font-family: Arial, Helvetica, sans-serif;&lt;br /&gt;
	color: var(--clr-DeepPurple-base-30); &lt;br /&gt;
	font-weight: 600;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text layout using padding - use vw for responsive */&lt;br /&gt;
/* 10px = 0.625rem; 20px = 1.25rem; 30px = 1.875rem; 40px = 2.5rem; */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
h5 { padding-left: 0.5vw; } &lt;br /&gt;
h6 { padding-left: 0.5vw; } &lt;br /&gt;
p  { padding-left: 1vw; padding-right:1vw; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* ordered list ol and altered padding for a nested list */&lt;br /&gt;
ol { display:block; position:relative; left:0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; padding-right:0.9vw; &lt;br /&gt;
     &amp;amp; ol { display:block; position:relative; left:-0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; list-style-type:lower-roman; }&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
/* Definition List */&lt;br /&gt;
dl { padding-left: 2.5vw; padding-right:2.5vw; } &lt;br /&gt;
dt { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
dd { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* 11 July 2025 Rows and Columns     */&lt;br /&gt;
&lt;br /&gt;
/* 26 July 2020 New row/column layout */&lt;br /&gt;
/* July 2025 Copied from www.mh370wiki.net ( with minor adjustments ) */&lt;br /&gt;
.Row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.column-left { display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-right: 1em; }&lt;br /&gt;
.column-center {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; margin-left: 1em; margin-right: 1em; }&lt;br /&gt;
.column-right {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-left: 1em; }&lt;br /&gt;
	&lt;br /&gt;
/* flex-basis determines column width */	&lt;br /&gt;
.col-width-75 { flex-basis: 75%; flex-shrink: 15;} /* usually main column 75% and Comments or Notes 25% */&lt;br /&gt;
.col-width-70 { flex-basis: 65%; flex-shrink: 13;} /* added 28 Oct 2020 to use with col-width-30 even though that is actually 33% */&lt;br /&gt;
.col-width-60 { flex-basis: 60%; flex-shrink: 12;} /* two columns in ratio 3:2 */&lt;br /&gt;
.col-width-50 { flex-basis: 50%; flex-shrink: 10;} /* two equal columns */&lt;br /&gt;
.col-width-40 { flex-basis: 40%; flex-shrink: 8;} &lt;br /&gt;
/*.col-width-30 { flex-basis: 33%; flex-shrink: 7;}  */&lt;br /&gt;
/* .col-width-30 { flex: 1 1 0;} /* 16 Nov 2020 If columns are equal then flex should be 1 1 0 */&lt;br /&gt;
.col-width-30 { flex-basis: 0; }&lt;br /&gt;
.col-width-25 { flex-basis: 25%; flex-shrink: 5;} /* usually right column  */&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1824</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1824"/>
		<updated>2025-08-21T09:19:40Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* #ca-nstab-ns_3400 { display:none !important; } */&lt;br /&gt;
&lt;br /&gt;
/* body.ns-0 #ca-talk { display:none !important; } */ /* this works */&lt;br /&gt;
&lt;br /&gt;
/* body.ns-0 #ca-nstab { display:none !important; } doesn&#039;t work */&lt;br /&gt;
&lt;br /&gt;
body.ns-3400 #ca-talk { display:none !important; } /* this works */&lt;br /&gt;
&lt;br /&gt;
body.ns-3400 #ca-nstab { display:none !important; }&lt;br /&gt;
&lt;br /&gt;
/* 5 August 2025 Added Colors for use in Sidebar and MediaWiki interface */&lt;br /&gt;
&lt;br /&gt;
/* Steel Blue */&lt;br /&gt;
:root { --SteelBlue-80: #B6CEE2;&lt;br /&gt;
        --SteelBlue-70: #91B6D4;&lt;br /&gt;
        --SteelBlue-60: #6C9DC6;&lt;br /&gt;
        --SteelBlue-50: #4785B8;&lt;br /&gt;
        --SteelBlue-40: #396A93;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tan */&lt;br /&gt;
:root { --Tan-90: #F1E7DA;&lt;br /&gt;
        --Tan-80: #E2CFB6;&lt;br /&gt;
        --Tan-70: #D4B791;&lt;br /&gt;
        --Tan-60: #C69F6C;&lt;br /&gt;
        --Tan-50: #B88747;&lt;br /&gt;
        --Tan-40: #936C39;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* Items sorted with lightest color shade first, approximating a Z order */&lt;br /&gt;
&lt;br /&gt;
#mw-head { background-color: var(--SteelBlue-80); } /* full width at top of screen, behind logo */&lt;br /&gt;
&lt;br /&gt;
/* mw-body-content is in front of mw-body */&lt;br /&gt;
.mw-body-content { background-color: #F2F2F2; border-radius: 1em; padding-top:2em; padding-bottom:2em; padding-left:2.5em; padding-right:2.5em; } &lt;br /&gt;
&lt;br /&gt;
.mw-body { background-color: var(--SteelBlue-70); } /* is background for everything below header and right of left panel and down to footer */&lt;br /&gt;
&lt;br /&gt;
.mw-footer { background-color: var(--SteelBlue-60); } /* does not extend to bottom of the screen */&lt;br /&gt;
&lt;br /&gt;
#mw-panel.vector-legacy-sidebar.collapsible-nav { background-color: var(--SteelBlue-50); } /* background for menu but extends to top of screen and behind logo and in front of header */&lt;br /&gt;
&lt;br /&gt;
body { background-color: var(--SteelBlue-40); } /* everything below mw-head, full width of screen, to bottom of screen */&lt;br /&gt;
&lt;br /&gt;
.catlinks { background-color: #bdccdb; } /* border on category row */&lt;br /&gt;
.mw-normal-catlinks { background-color: #ced8e4; padding-left:20px; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 2 August added class to standardised margins when displaying a category tree */&lt;br /&gt;
.displayCatTree { margin-left:4em; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 1 August 2025 Added a class to standardise page headers, plus a variant for category pages */&lt;br /&gt;
&lt;br /&gt;
.header { width:90%; &lt;br /&gt;
          margin-left:auto; margin-right:auto; margin-bottom:1em; padding-top:10px; padding-bottom:10px; &lt;br /&gt;
          text-align:justify;&lt;br /&gt;
          background-color: #cce6ff; border-color: #cce6ff; border-radius: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.cat { background-color: #e8f2fc; border-color: #e8f2fc; } /* pale shade of blue for header on category pages */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 attempt to indent unordered lists */&lt;br /&gt;
.mw-body-content ul { display:block; position:relative; left:1em; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } /* mw-body-content limits scope */&lt;br /&gt;
/* .ulNormal  { display:block; position:relative; left:2vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 added style for quoted text, adapted from mh370wiki.net, used instead of blockquote */&lt;br /&gt;
&lt;br /&gt;
.quote { width: 90%; background: #FAFAFA;    /* contrast against white page background */&lt;br /&gt;
         padding-left: 1em;; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em;  /* was px  */&lt;br /&gt;
         margin-left:auto; margin-right:auto; margin-top:0.5em; margin-bottom:0.5em;  &lt;br /&gt;
         text-align:justify; color: #000000;     /* black */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 27 July 2025 added left margin to images */&lt;br /&gt;
.mw-default-size { margin-left: 2em; } /* this is the container. applies to all images */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 25 July 2025 added style to indent &amp;lt;pre&amp;gt; Note: No dot required before pre */&lt;br /&gt;
&lt;br /&gt;
pre { width: 90%; margin-left: auto; margin-right: auto; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 22 July 2025 Added style to enlarge fonts on Tooltips but currently unable to change tooltip width */&lt;br /&gt;
&lt;br /&gt;
.mw-lingo-definition-text { font-size:125%; } /* Tooltip is also styled as a qtip in jquery.qtip.css */&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 20 July 2025 Fluid Typography and Font Variables */&lt;br /&gt;
/* Copied from mh370wiki.net and adapted for use here */&lt;br /&gt;
&lt;br /&gt;
/* Fluid Typography  - see Responsive And Fluid Typography With vh And vw Units&lt;br /&gt;
https://www.smashingmagazine.com/2016/05/fluid-typography/ &lt;br /&gt;
Unlike responsive typography, which changes only at set breakpoints,&lt;br /&gt;
fluid typography resizes smoothly to match any device width.&lt;br /&gt;
*/&lt;br /&gt;
/* Variables for font size ( to be used in Vector.css ) see https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
&lt;br /&gt;
/*   Clamp() for min, preferred, max font size see https://developer.mozilla.org/en-US/docs/Web/CSS/clamp() */&lt;br /&gt;
/* Notes on font sizes&lt;br /&gt;
The default text size in browsers is 16px. So, the default size of 1em is 16px.&lt;br /&gt;
rem (root em) references the base font size of the document.&lt;br /&gt;
Assuming that the base font size is 16px, we get the following values:&lt;br /&gt;
1rem = 16px&lt;br /&gt;
1.5rem = 24px&lt;br /&gt;
0.5rem = 8px&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/* Use clamp ( min preferred max ) */&lt;br /&gt;
:root { font-size: clamp( 1vw, 1.05rem, 1.2vw ); } &lt;br /&gt;
&lt;br /&gt;
/* Font sizes using variables from https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
/* Example   font-size: var(--font-size-100);   */&lt;br /&gt;
:root { --font-size-625: 62.5%;  /* 62.5% of root font size */&lt;br /&gt;
        --font-size-875: 87.5%;  /* 87.5% x root font size  */&lt;br /&gt;
        --font-size-090: 90%;    /* 90% x root font size    */&lt;br /&gt;
        --font-size-095: 95%;    /* 95% x root font size    */&lt;br /&gt;
        --font-size-100: 100%;   /* 100% = root font size   */&lt;br /&gt;
        --font-size-105: 105%;   /* 105% x root font size   */&lt;br /&gt;
        --font-size-110: 110%;   /* 110% x root font size   */&lt;br /&gt;
        --font-size-115: 115%;   /* 115% x root font size   */&lt;br /&gt;
        --font-size-120: 120%;   /* 120% x root font size   */        &lt;br /&gt;
        --font-size-125: 125%;   /* 125% x root font size   */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text Styles using Font Variables             */&lt;br /&gt;
&lt;br /&gt;
/* Font Sizes */&lt;br /&gt;
body { font-size: var(--font-size-100); }&lt;br /&gt;
p { font-size: var(--font-size-100); }&lt;br /&gt;
dl dt dd { font-size: var(--font-size-100); }&lt;br /&gt;
dd { margin-bottom: 1em; } /* added 11 Oct 2022 to space between a dd and the next dt */&lt;br /&gt;
/* ul ol li { font-size: var(--font-size-100); } */&lt;br /&gt;
&lt;br /&gt;
/* Headings are sized by percentage over the base font and also resize based on viewport width */&lt;br /&gt;
h1 {font-size: var(--font-size-125);}   	&lt;br /&gt;
h2 {font-size: var(--font-size-120);}   /* h2 was previously not defined */&lt;br /&gt;
h3 {font-size: var(--font-size-115);}&lt;br /&gt;
h4 {font-size: var(--font-size-110);}&lt;br /&gt;
h5 {font-size: var(--font-size-105);}&lt;br /&gt;
/* h6 {font-size: var(--font-size-100);} modified 4 Jan 2025 */&lt;br /&gt;
h6 {font-size: var(--font-size-090);}&lt;br /&gt;
&lt;br /&gt;
h1, h3, h4, h5, h6 {&lt;br /&gt;
	font-family: Arial, Helvetica, sans-serif;&lt;br /&gt;
	color: var(--clr-DeepPurple-base-30); &lt;br /&gt;
	font-weight: 600;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text layout using padding - use vw for responsive */&lt;br /&gt;
/* 10px = 0.625rem; 20px = 1.25rem; 30px = 1.875rem; 40px = 2.5rem; */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
h5 { padding-left: 0.5vw; } &lt;br /&gt;
h6 { padding-left: 0.5vw; } &lt;br /&gt;
p  { padding-left: 1vw; padding-right:1vw; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* ordered list ol and altered padding for a nested list */&lt;br /&gt;
ol { display:block; position:relative; left:0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; padding-right:0.9vw; &lt;br /&gt;
     &amp;amp; ol { display:block; position:relative; left:-0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; list-style-type:lower-roman; }&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
/* Definition List */&lt;br /&gt;
dl { padding-left: 2.5vw; padding-right:2.5vw; } &lt;br /&gt;
dt { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
dd { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* 11 July 2025 Rows and Columns     */&lt;br /&gt;
&lt;br /&gt;
/* 26 July 2020 New row/column layout */&lt;br /&gt;
/* July 2025 Copied from www.mh370wiki.net ( with minor adjustments ) */&lt;br /&gt;
.Row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.column-left { display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-right: 1em; }&lt;br /&gt;
.column-center {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; margin-left: 1em; margin-right: 1em; }&lt;br /&gt;
.column-right {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-left: 1em; }&lt;br /&gt;
	&lt;br /&gt;
/* flex-basis determines column width */	&lt;br /&gt;
.col-width-75 { flex-basis: 75%; flex-shrink: 15;} /* usually main column 75% and Comments or Notes 25% */&lt;br /&gt;
.col-width-70 { flex-basis: 65%; flex-shrink: 13;} /* added 28 Oct 2020 to use with col-width-30 even though that is actually 33% */&lt;br /&gt;
.col-width-60 { flex-basis: 60%; flex-shrink: 12;} /* two columns in ratio 3:2 */&lt;br /&gt;
.col-width-50 { flex-basis: 50%; flex-shrink: 10;} /* two equal columns */&lt;br /&gt;
.col-width-40 { flex-basis: 40%; flex-shrink: 8;} &lt;br /&gt;
/*.col-width-30 { flex-basis: 33%; flex-shrink: 7;}  */&lt;br /&gt;
/* .col-width-30 { flex: 1 1 0;} /* 16 Nov 2020 If columns are equal then flex should be 1 1 0 */&lt;br /&gt;
.col-width-30 { flex-basis: 0; }&lt;br /&gt;
.col-width-25 { flex-basis: 25%; flex-shrink: 5;} /* usually right column  */&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1823</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1823"/>
		<updated>2025-08-21T09:18:27Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* #ca-nstab-ns_3400 { display:none !important; } */&lt;br /&gt;
&lt;br /&gt;
body.ns-0 #ca-talk { display:none !important; } /* this works */&lt;br /&gt;
&lt;br /&gt;
/* body.ns-0 #ca-nstab { display:none !important; } doesn&#039;t work */&lt;br /&gt;
&lt;br /&gt;
body.ns-3400 #ca-talk { display:none !important; }&lt;br /&gt;
&lt;br /&gt;
/* 5 August 2025 Added Colors for use in Sidebar and MediaWiki interface */&lt;br /&gt;
&lt;br /&gt;
/* Steel Blue */&lt;br /&gt;
:root { --SteelBlue-80: #B6CEE2;&lt;br /&gt;
        --SteelBlue-70: #91B6D4;&lt;br /&gt;
        --SteelBlue-60: #6C9DC6;&lt;br /&gt;
        --SteelBlue-50: #4785B8;&lt;br /&gt;
        --SteelBlue-40: #396A93;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tan */&lt;br /&gt;
:root { --Tan-90: #F1E7DA;&lt;br /&gt;
        --Tan-80: #E2CFB6;&lt;br /&gt;
        --Tan-70: #D4B791;&lt;br /&gt;
        --Tan-60: #C69F6C;&lt;br /&gt;
        --Tan-50: #B88747;&lt;br /&gt;
        --Tan-40: #936C39;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* Items sorted with lightest color shade first, approximating a Z order */&lt;br /&gt;
&lt;br /&gt;
#mw-head { background-color: var(--SteelBlue-80); } /* full width at top of screen, behind logo */&lt;br /&gt;
&lt;br /&gt;
/* mw-body-content is in front of mw-body */&lt;br /&gt;
.mw-body-content { background-color: #F2F2F2; border-radius: 1em; padding-top:2em; padding-bottom:2em; padding-left:2.5em; padding-right:2.5em; } &lt;br /&gt;
&lt;br /&gt;
.mw-body { background-color: var(--SteelBlue-70); } /* is background for everything below header and right of left panel and down to footer */&lt;br /&gt;
&lt;br /&gt;
.mw-footer { background-color: var(--SteelBlue-60); } /* does not extend to bottom of the screen */&lt;br /&gt;
&lt;br /&gt;
#mw-panel.vector-legacy-sidebar.collapsible-nav { background-color: var(--SteelBlue-50); } /* background for menu but extends to top of screen and behind logo and in front of header */&lt;br /&gt;
&lt;br /&gt;
body { background-color: var(--SteelBlue-40); } /* everything below mw-head, full width of screen, to bottom of screen */&lt;br /&gt;
&lt;br /&gt;
.catlinks { background-color: #bdccdb; } /* border on category row */&lt;br /&gt;
.mw-normal-catlinks { background-color: #ced8e4; padding-left:20px; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 2 August added class to standardised margins when displaying a category tree */&lt;br /&gt;
.displayCatTree { margin-left:4em; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 1 August 2025 Added a class to standardise page headers, plus a variant for category pages */&lt;br /&gt;
&lt;br /&gt;
.header { width:90%; &lt;br /&gt;
          margin-left:auto; margin-right:auto; margin-bottom:1em; padding-top:10px; padding-bottom:10px; &lt;br /&gt;
          text-align:justify;&lt;br /&gt;
          background-color: #cce6ff; border-color: #cce6ff; border-radius: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.cat { background-color: #e8f2fc; border-color: #e8f2fc; } /* pale shade of blue for header on category pages */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 attempt to indent unordered lists */&lt;br /&gt;
.mw-body-content ul { display:block; position:relative; left:1em; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } /* mw-body-content limits scope */&lt;br /&gt;
/* .ulNormal  { display:block; position:relative; left:2vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 added style for quoted text, adapted from mh370wiki.net, used instead of blockquote */&lt;br /&gt;
&lt;br /&gt;
.quote { width: 90%; background: #FAFAFA;    /* contrast against white page background */&lt;br /&gt;
         padding-left: 1em;; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em;  /* was px  */&lt;br /&gt;
         margin-left:auto; margin-right:auto; margin-top:0.5em; margin-bottom:0.5em;  &lt;br /&gt;
         text-align:justify; color: #000000;     /* black */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 27 July 2025 added left margin to images */&lt;br /&gt;
.mw-default-size { margin-left: 2em; } /* this is the container. applies to all images */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 25 July 2025 added style to indent &amp;lt;pre&amp;gt; Note: No dot required before pre */&lt;br /&gt;
&lt;br /&gt;
pre { width: 90%; margin-left: auto; margin-right: auto; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 22 July 2025 Added style to enlarge fonts on Tooltips but currently unable to change tooltip width */&lt;br /&gt;
&lt;br /&gt;
.mw-lingo-definition-text { font-size:125%; } /* Tooltip is also styled as a qtip in jquery.qtip.css */&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 20 July 2025 Fluid Typography and Font Variables */&lt;br /&gt;
/* Copied from mh370wiki.net and adapted for use here */&lt;br /&gt;
&lt;br /&gt;
/* Fluid Typography  - see Responsive And Fluid Typography With vh And vw Units&lt;br /&gt;
https://www.smashingmagazine.com/2016/05/fluid-typography/ &lt;br /&gt;
Unlike responsive typography, which changes only at set breakpoints,&lt;br /&gt;
fluid typography resizes smoothly to match any device width.&lt;br /&gt;
*/&lt;br /&gt;
/* Variables for font size ( to be used in Vector.css ) see https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
&lt;br /&gt;
/*   Clamp() for min, preferred, max font size see https://developer.mozilla.org/en-US/docs/Web/CSS/clamp() */&lt;br /&gt;
/* Notes on font sizes&lt;br /&gt;
The default text size in browsers is 16px. So, the default size of 1em is 16px.&lt;br /&gt;
rem (root em) references the base font size of the document.&lt;br /&gt;
Assuming that the base font size is 16px, we get the following values:&lt;br /&gt;
1rem = 16px&lt;br /&gt;
1.5rem = 24px&lt;br /&gt;
0.5rem = 8px&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/* Use clamp ( min preferred max ) */&lt;br /&gt;
:root { font-size: clamp( 1vw, 1.05rem, 1.2vw ); } &lt;br /&gt;
&lt;br /&gt;
/* Font sizes using variables from https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
/* Example   font-size: var(--font-size-100);   */&lt;br /&gt;
:root { --font-size-625: 62.5%;  /* 62.5% of root font size */&lt;br /&gt;
        --font-size-875: 87.5%;  /* 87.5% x root font size  */&lt;br /&gt;
        --font-size-090: 90%;    /* 90% x root font size    */&lt;br /&gt;
        --font-size-095: 95%;    /* 95% x root font size    */&lt;br /&gt;
        --font-size-100: 100%;   /* 100% = root font size   */&lt;br /&gt;
        --font-size-105: 105%;   /* 105% x root font size   */&lt;br /&gt;
        --font-size-110: 110%;   /* 110% x root font size   */&lt;br /&gt;
        --font-size-115: 115%;   /* 115% x root font size   */&lt;br /&gt;
        --font-size-120: 120%;   /* 120% x root font size   */        &lt;br /&gt;
        --font-size-125: 125%;   /* 125% x root font size   */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text Styles using Font Variables             */&lt;br /&gt;
&lt;br /&gt;
/* Font Sizes */&lt;br /&gt;
body { font-size: var(--font-size-100); }&lt;br /&gt;
p { font-size: var(--font-size-100); }&lt;br /&gt;
dl dt dd { font-size: var(--font-size-100); }&lt;br /&gt;
dd { margin-bottom: 1em; } /* added 11 Oct 2022 to space between a dd and the next dt */&lt;br /&gt;
/* ul ol li { font-size: var(--font-size-100); } */&lt;br /&gt;
&lt;br /&gt;
/* Headings are sized by percentage over the base font and also resize based on viewport width */&lt;br /&gt;
h1 {font-size: var(--font-size-125);}   	&lt;br /&gt;
h2 {font-size: var(--font-size-120);}   /* h2 was previously not defined */&lt;br /&gt;
h3 {font-size: var(--font-size-115);}&lt;br /&gt;
h4 {font-size: var(--font-size-110);}&lt;br /&gt;
h5 {font-size: var(--font-size-105);}&lt;br /&gt;
/* h6 {font-size: var(--font-size-100);} modified 4 Jan 2025 */&lt;br /&gt;
h6 {font-size: var(--font-size-090);}&lt;br /&gt;
&lt;br /&gt;
h1, h3, h4, h5, h6 {&lt;br /&gt;
	font-family: Arial, Helvetica, sans-serif;&lt;br /&gt;
	color: var(--clr-DeepPurple-base-30); &lt;br /&gt;
	font-weight: 600;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text layout using padding - use vw for responsive */&lt;br /&gt;
/* 10px = 0.625rem; 20px = 1.25rem; 30px = 1.875rem; 40px = 2.5rem; */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
h5 { padding-left: 0.5vw; } &lt;br /&gt;
h6 { padding-left: 0.5vw; } &lt;br /&gt;
p  { padding-left: 1vw; padding-right:1vw; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* ordered list ol and altered padding for a nested list */&lt;br /&gt;
ol { display:block; position:relative; left:0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; padding-right:0.9vw; &lt;br /&gt;
     &amp;amp; ol { display:block; position:relative; left:-0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; list-style-type:lower-roman; }&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
/* Definition List */&lt;br /&gt;
dl { padding-left: 2.5vw; padding-right:2.5vw; } &lt;br /&gt;
dt { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
dd { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* 11 July 2025 Rows and Columns     */&lt;br /&gt;
&lt;br /&gt;
/* 26 July 2020 New row/column layout */&lt;br /&gt;
/* July 2025 Copied from www.mh370wiki.net ( with minor adjustments ) */&lt;br /&gt;
.Row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.column-left { display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-right: 1em; }&lt;br /&gt;
.column-center {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; margin-left: 1em; margin-right: 1em; }&lt;br /&gt;
.column-right {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-left: 1em; }&lt;br /&gt;
	&lt;br /&gt;
/* flex-basis determines column width */	&lt;br /&gt;
.col-width-75 { flex-basis: 75%; flex-shrink: 15;} /* usually main column 75% and Comments or Notes 25% */&lt;br /&gt;
.col-width-70 { flex-basis: 65%; flex-shrink: 13;} /* added 28 Oct 2020 to use with col-width-30 even though that is actually 33% */&lt;br /&gt;
.col-width-60 { flex-basis: 60%; flex-shrink: 12;} /* two columns in ratio 3:2 */&lt;br /&gt;
.col-width-50 { flex-basis: 50%; flex-shrink: 10;} /* two equal columns */&lt;br /&gt;
.col-width-40 { flex-basis: 40%; flex-shrink: 8;} &lt;br /&gt;
/*.col-width-30 { flex-basis: 33%; flex-shrink: 7;}  */&lt;br /&gt;
/* .col-width-30 { flex: 1 1 0;} /* 16 Nov 2020 If columns are equal then flex should be 1 1 0 */&lt;br /&gt;
.col-width-30 { flex-basis: 0; }&lt;br /&gt;
.col-width-25 { flex-basis: 25%; flex-shrink: 5;} /* usually right column  */&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1822</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1822"/>
		<updated>2025-08-21T09:15:19Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* #ca-nstab-ns_3400 { display:none !important; } */&lt;br /&gt;
&lt;br /&gt;
body.ns-0 #ca-talk { display:none !important; }&lt;br /&gt;
&lt;br /&gt;
body.ns-0 #ca-nstab { display:none !important; }&lt;br /&gt;
&lt;br /&gt;
/* 5 August 2025 Added Colors for use in Sidebar and MediaWiki interface */&lt;br /&gt;
&lt;br /&gt;
/* Steel Blue */&lt;br /&gt;
:root { --SteelBlue-80: #B6CEE2;&lt;br /&gt;
        --SteelBlue-70: #91B6D4;&lt;br /&gt;
        --SteelBlue-60: #6C9DC6;&lt;br /&gt;
        --SteelBlue-50: #4785B8;&lt;br /&gt;
        --SteelBlue-40: #396A93;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tan */&lt;br /&gt;
:root { --Tan-90: #F1E7DA;&lt;br /&gt;
        --Tan-80: #E2CFB6;&lt;br /&gt;
        --Tan-70: #D4B791;&lt;br /&gt;
        --Tan-60: #C69F6C;&lt;br /&gt;
        --Tan-50: #B88747;&lt;br /&gt;
        --Tan-40: #936C39;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* Items sorted with lightest color shade first, approximating a Z order */&lt;br /&gt;
&lt;br /&gt;
#mw-head { background-color: var(--SteelBlue-80); } /* full width at top of screen, behind logo */&lt;br /&gt;
&lt;br /&gt;
/* mw-body-content is in front of mw-body */&lt;br /&gt;
.mw-body-content { background-color: #F2F2F2; border-radius: 1em; padding-top:2em; padding-bottom:2em; padding-left:2.5em; padding-right:2.5em; } &lt;br /&gt;
&lt;br /&gt;
.mw-body { background-color: var(--SteelBlue-70); } /* is background for everything below header and right of left panel and down to footer */&lt;br /&gt;
&lt;br /&gt;
.mw-footer { background-color: var(--SteelBlue-60); } /* does not extend to bottom of the screen */&lt;br /&gt;
&lt;br /&gt;
#mw-panel.vector-legacy-sidebar.collapsible-nav { background-color: var(--SteelBlue-50); } /* background for menu but extends to top of screen and behind logo and in front of header */&lt;br /&gt;
&lt;br /&gt;
body { background-color: var(--SteelBlue-40); } /* everything below mw-head, full width of screen, to bottom of screen */&lt;br /&gt;
&lt;br /&gt;
.catlinks { background-color: #bdccdb; } /* border on category row */&lt;br /&gt;
.mw-normal-catlinks { background-color: #ced8e4; padding-left:20px; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 2 August added class to standardised margins when displaying a category tree */&lt;br /&gt;
.displayCatTree { margin-left:4em; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 1 August 2025 Added a class to standardise page headers, plus a variant for category pages */&lt;br /&gt;
&lt;br /&gt;
.header { width:90%; &lt;br /&gt;
          margin-left:auto; margin-right:auto; margin-bottom:1em; padding-top:10px; padding-bottom:10px; &lt;br /&gt;
          text-align:justify;&lt;br /&gt;
          background-color: #cce6ff; border-color: #cce6ff; border-radius: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.cat { background-color: #e8f2fc; border-color: #e8f2fc; } /* pale shade of blue for header on category pages */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 attempt to indent unordered lists */&lt;br /&gt;
.mw-body-content ul { display:block; position:relative; left:1em; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } /* mw-body-content limits scope */&lt;br /&gt;
/* .ulNormal  { display:block; position:relative; left:2vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 added style for quoted text, adapted from mh370wiki.net, used instead of blockquote */&lt;br /&gt;
&lt;br /&gt;
.quote { width: 90%; background: #FAFAFA;    /* contrast against white page background */&lt;br /&gt;
         padding-left: 1em;; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em;  /* was px  */&lt;br /&gt;
         margin-left:auto; margin-right:auto; margin-top:0.5em; margin-bottom:0.5em;  &lt;br /&gt;
         text-align:justify; color: #000000;     /* black */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 27 July 2025 added left margin to images */&lt;br /&gt;
.mw-default-size { margin-left: 2em; } /* this is the container. applies to all images */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 25 July 2025 added style to indent &amp;lt;pre&amp;gt; Note: No dot required before pre */&lt;br /&gt;
&lt;br /&gt;
pre { width: 90%; margin-left: auto; margin-right: auto; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 22 July 2025 Added style to enlarge fonts on Tooltips but currently unable to change tooltip width */&lt;br /&gt;
&lt;br /&gt;
.mw-lingo-definition-text { font-size:125%; } /* Tooltip is also styled as a qtip in jquery.qtip.css */&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 20 July 2025 Fluid Typography and Font Variables */&lt;br /&gt;
/* Copied from mh370wiki.net and adapted for use here */&lt;br /&gt;
&lt;br /&gt;
/* Fluid Typography  - see Responsive And Fluid Typography With vh And vw Units&lt;br /&gt;
https://www.smashingmagazine.com/2016/05/fluid-typography/ &lt;br /&gt;
Unlike responsive typography, which changes only at set breakpoints,&lt;br /&gt;
fluid typography resizes smoothly to match any device width.&lt;br /&gt;
*/&lt;br /&gt;
/* Variables for font size ( to be used in Vector.css ) see https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
&lt;br /&gt;
/*   Clamp() for min, preferred, max font size see https://developer.mozilla.org/en-US/docs/Web/CSS/clamp() */&lt;br /&gt;
/* Notes on font sizes&lt;br /&gt;
The default text size in browsers is 16px. So, the default size of 1em is 16px.&lt;br /&gt;
rem (root em) references the base font size of the document.&lt;br /&gt;
Assuming that the base font size is 16px, we get the following values:&lt;br /&gt;
1rem = 16px&lt;br /&gt;
1.5rem = 24px&lt;br /&gt;
0.5rem = 8px&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/* Use clamp ( min preferred max ) */&lt;br /&gt;
:root { font-size: clamp( 1vw, 1.05rem, 1.2vw ); } &lt;br /&gt;
&lt;br /&gt;
/* Font sizes using variables from https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
/* Example   font-size: var(--font-size-100);   */&lt;br /&gt;
:root { --font-size-625: 62.5%;  /* 62.5% of root font size */&lt;br /&gt;
        --font-size-875: 87.5%;  /* 87.5% x root font size  */&lt;br /&gt;
        --font-size-090: 90%;    /* 90% x root font size    */&lt;br /&gt;
        --font-size-095: 95%;    /* 95% x root font size    */&lt;br /&gt;
        --font-size-100: 100%;   /* 100% = root font size   */&lt;br /&gt;
        --font-size-105: 105%;   /* 105% x root font size   */&lt;br /&gt;
        --font-size-110: 110%;   /* 110% x root font size   */&lt;br /&gt;
        --font-size-115: 115%;   /* 115% x root font size   */&lt;br /&gt;
        --font-size-120: 120%;   /* 120% x root font size   */        &lt;br /&gt;
        --font-size-125: 125%;   /* 125% x root font size   */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text Styles using Font Variables             */&lt;br /&gt;
&lt;br /&gt;
/* Font Sizes */&lt;br /&gt;
body { font-size: var(--font-size-100); }&lt;br /&gt;
p { font-size: var(--font-size-100); }&lt;br /&gt;
dl dt dd { font-size: var(--font-size-100); }&lt;br /&gt;
dd { margin-bottom: 1em; } /* added 11 Oct 2022 to space between a dd and the next dt */&lt;br /&gt;
/* ul ol li { font-size: var(--font-size-100); } */&lt;br /&gt;
&lt;br /&gt;
/* Headings are sized by percentage over the base font and also resize based on viewport width */&lt;br /&gt;
h1 {font-size: var(--font-size-125);}   	&lt;br /&gt;
h2 {font-size: var(--font-size-120);}   /* h2 was previously not defined */&lt;br /&gt;
h3 {font-size: var(--font-size-115);}&lt;br /&gt;
h4 {font-size: var(--font-size-110);}&lt;br /&gt;
h5 {font-size: var(--font-size-105);}&lt;br /&gt;
/* h6 {font-size: var(--font-size-100);} modified 4 Jan 2025 */&lt;br /&gt;
h6 {font-size: var(--font-size-090);}&lt;br /&gt;
&lt;br /&gt;
h1, h3, h4, h5, h6 {&lt;br /&gt;
	font-family: Arial, Helvetica, sans-serif;&lt;br /&gt;
	color: var(--clr-DeepPurple-base-30); &lt;br /&gt;
	font-weight: 600;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text layout using padding - use vw for responsive */&lt;br /&gt;
/* 10px = 0.625rem; 20px = 1.25rem; 30px = 1.875rem; 40px = 2.5rem; */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
h5 { padding-left: 0.5vw; } &lt;br /&gt;
h6 { padding-left: 0.5vw; } &lt;br /&gt;
p  { padding-left: 1vw; padding-right:1vw; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* ordered list ol and altered padding for a nested list */&lt;br /&gt;
ol { display:block; position:relative; left:0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; padding-right:0.9vw; &lt;br /&gt;
     &amp;amp; ol { display:block; position:relative; left:-0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; list-style-type:lower-roman; }&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
/* Definition List */&lt;br /&gt;
dl { padding-left: 2.5vw; padding-right:2.5vw; } &lt;br /&gt;
dt { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
dd { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* 11 July 2025 Rows and Columns     */&lt;br /&gt;
&lt;br /&gt;
/* 26 July 2020 New row/column layout */&lt;br /&gt;
/* July 2025 Copied from www.mh370wiki.net ( with minor adjustments ) */&lt;br /&gt;
.Row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.column-left { display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-right: 1em; }&lt;br /&gt;
.column-center {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; margin-left: 1em; margin-right: 1em; }&lt;br /&gt;
.column-right {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-left: 1em; }&lt;br /&gt;
	&lt;br /&gt;
/* flex-basis determines column width */	&lt;br /&gt;
.col-width-75 { flex-basis: 75%; flex-shrink: 15;} /* usually main column 75% and Comments or Notes 25% */&lt;br /&gt;
.col-width-70 { flex-basis: 65%; flex-shrink: 13;} /* added 28 Oct 2020 to use with col-width-30 even though that is actually 33% */&lt;br /&gt;
.col-width-60 { flex-basis: 60%; flex-shrink: 12;} /* two columns in ratio 3:2 */&lt;br /&gt;
.col-width-50 { flex-basis: 50%; flex-shrink: 10;} /* two equal columns */&lt;br /&gt;
.col-width-40 { flex-basis: 40%; flex-shrink: 8;} &lt;br /&gt;
/*.col-width-30 { flex-basis: 33%; flex-shrink: 7;}  */&lt;br /&gt;
/* .col-width-30 { flex: 1 1 0;} /* 16 Nov 2020 If columns are equal then flex should be 1 1 0 */&lt;br /&gt;
.col-width-30 { flex-basis: 0; }&lt;br /&gt;
.col-width-25 { flex-basis: 25%; flex-shrink: 5;} /* usually right column  */&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1821</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1821"/>
		<updated>2025-08-21T09:14:21Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* #ca-nstab-ns_3400 { display:none !important; } */&lt;br /&gt;
&lt;br /&gt;
body.ns-0 #ca-talk { display:none !important; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 5 August 2025 Added Colors for use in Sidebar and MediaWiki interface */&lt;br /&gt;
&lt;br /&gt;
/* Steel Blue */&lt;br /&gt;
:root { --SteelBlue-80: #B6CEE2;&lt;br /&gt;
        --SteelBlue-70: #91B6D4;&lt;br /&gt;
        --SteelBlue-60: #6C9DC6;&lt;br /&gt;
        --SteelBlue-50: #4785B8;&lt;br /&gt;
        --SteelBlue-40: #396A93;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tan */&lt;br /&gt;
:root { --Tan-90: #F1E7DA;&lt;br /&gt;
        --Tan-80: #E2CFB6;&lt;br /&gt;
        --Tan-70: #D4B791;&lt;br /&gt;
        --Tan-60: #C69F6C;&lt;br /&gt;
        --Tan-50: #B88747;&lt;br /&gt;
        --Tan-40: #936C39;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* Items sorted with lightest color shade first, approximating a Z order */&lt;br /&gt;
&lt;br /&gt;
#mw-head { background-color: var(--SteelBlue-80); } /* full width at top of screen, behind logo */&lt;br /&gt;
&lt;br /&gt;
/* mw-body-content is in front of mw-body */&lt;br /&gt;
.mw-body-content { background-color: #F2F2F2; border-radius: 1em; padding-top:2em; padding-bottom:2em; padding-left:2.5em; padding-right:2.5em; } &lt;br /&gt;
&lt;br /&gt;
.mw-body { background-color: var(--SteelBlue-70); } /* is background for everything below header and right of left panel and down to footer */&lt;br /&gt;
&lt;br /&gt;
.mw-footer { background-color: var(--SteelBlue-60); } /* does not extend to bottom of the screen */&lt;br /&gt;
&lt;br /&gt;
#mw-panel.vector-legacy-sidebar.collapsible-nav { background-color: var(--SteelBlue-50); } /* background for menu but extends to top of screen and behind logo and in front of header */&lt;br /&gt;
&lt;br /&gt;
body { background-color: var(--SteelBlue-40); } /* everything below mw-head, full width of screen, to bottom of screen */&lt;br /&gt;
&lt;br /&gt;
.catlinks { background-color: #bdccdb; } /* border on category row */&lt;br /&gt;
.mw-normal-catlinks { background-color: #ced8e4; padding-left:20px; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 2 August added class to standardised margins when displaying a category tree */&lt;br /&gt;
.displayCatTree { margin-left:4em; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 1 August 2025 Added a class to standardise page headers, plus a variant for category pages */&lt;br /&gt;
&lt;br /&gt;
.header { width:90%; &lt;br /&gt;
          margin-left:auto; margin-right:auto; margin-bottom:1em; padding-top:10px; padding-bottom:10px; &lt;br /&gt;
          text-align:justify;&lt;br /&gt;
          background-color: #cce6ff; border-color: #cce6ff; border-radius: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.cat { background-color: #e8f2fc; border-color: #e8f2fc; } /* pale shade of blue for header on category pages */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 attempt to indent unordered lists */&lt;br /&gt;
.mw-body-content ul { display:block; position:relative; left:1em; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } /* mw-body-content limits scope */&lt;br /&gt;
/* .ulNormal  { display:block; position:relative; left:2vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 added style for quoted text, adapted from mh370wiki.net, used instead of blockquote */&lt;br /&gt;
&lt;br /&gt;
.quote { width: 90%; background: #FAFAFA;    /* contrast against white page background */&lt;br /&gt;
         padding-left: 1em;; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em;  /* was px  */&lt;br /&gt;
         margin-left:auto; margin-right:auto; margin-top:0.5em; margin-bottom:0.5em;  &lt;br /&gt;
         text-align:justify; color: #000000;     /* black */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 27 July 2025 added left margin to images */&lt;br /&gt;
.mw-default-size { margin-left: 2em; } /* this is the container. applies to all images */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 25 July 2025 added style to indent &amp;lt;pre&amp;gt; Note: No dot required before pre */&lt;br /&gt;
&lt;br /&gt;
pre { width: 90%; margin-left: auto; margin-right: auto; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 22 July 2025 Added style to enlarge fonts on Tooltips but currently unable to change tooltip width */&lt;br /&gt;
&lt;br /&gt;
.mw-lingo-definition-text { font-size:125%; } /* Tooltip is also styled as a qtip in jquery.qtip.css */&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 20 July 2025 Fluid Typography and Font Variables */&lt;br /&gt;
/* Copied from mh370wiki.net and adapted for use here */&lt;br /&gt;
&lt;br /&gt;
/* Fluid Typography  - see Responsive And Fluid Typography With vh And vw Units&lt;br /&gt;
https://www.smashingmagazine.com/2016/05/fluid-typography/ &lt;br /&gt;
Unlike responsive typography, which changes only at set breakpoints,&lt;br /&gt;
fluid typography resizes smoothly to match any device width.&lt;br /&gt;
*/&lt;br /&gt;
/* Variables for font size ( to be used in Vector.css ) see https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
&lt;br /&gt;
/*   Clamp() for min, preferred, max font size see https://developer.mozilla.org/en-US/docs/Web/CSS/clamp() */&lt;br /&gt;
/* Notes on font sizes&lt;br /&gt;
The default text size in browsers is 16px. So, the default size of 1em is 16px.&lt;br /&gt;
rem (root em) references the base font size of the document.&lt;br /&gt;
Assuming that the base font size is 16px, we get the following values:&lt;br /&gt;
1rem = 16px&lt;br /&gt;
1.5rem = 24px&lt;br /&gt;
0.5rem = 8px&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/* Use clamp ( min preferred max ) */&lt;br /&gt;
:root { font-size: clamp( 1vw, 1.05rem, 1.2vw ); } &lt;br /&gt;
&lt;br /&gt;
/* Font sizes using variables from https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
/* Example   font-size: var(--font-size-100);   */&lt;br /&gt;
:root { --font-size-625: 62.5%;  /* 62.5% of root font size */&lt;br /&gt;
        --font-size-875: 87.5%;  /* 87.5% x root font size  */&lt;br /&gt;
        --font-size-090: 90%;    /* 90% x root font size    */&lt;br /&gt;
        --font-size-095: 95%;    /* 95% x root font size    */&lt;br /&gt;
        --font-size-100: 100%;   /* 100% = root font size   */&lt;br /&gt;
        --font-size-105: 105%;   /* 105% x root font size   */&lt;br /&gt;
        --font-size-110: 110%;   /* 110% x root font size   */&lt;br /&gt;
        --font-size-115: 115%;   /* 115% x root font size   */&lt;br /&gt;
        --font-size-120: 120%;   /* 120% x root font size   */        &lt;br /&gt;
        --font-size-125: 125%;   /* 125% x root font size   */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text Styles using Font Variables             */&lt;br /&gt;
&lt;br /&gt;
/* Font Sizes */&lt;br /&gt;
body { font-size: var(--font-size-100); }&lt;br /&gt;
p { font-size: var(--font-size-100); }&lt;br /&gt;
dl dt dd { font-size: var(--font-size-100); }&lt;br /&gt;
dd { margin-bottom: 1em; } /* added 11 Oct 2022 to space between a dd and the next dt */&lt;br /&gt;
/* ul ol li { font-size: var(--font-size-100); } */&lt;br /&gt;
&lt;br /&gt;
/* Headings are sized by percentage over the base font and also resize based on viewport width */&lt;br /&gt;
h1 {font-size: var(--font-size-125);}   	&lt;br /&gt;
h2 {font-size: var(--font-size-120);}   /* h2 was previously not defined */&lt;br /&gt;
h3 {font-size: var(--font-size-115);}&lt;br /&gt;
h4 {font-size: var(--font-size-110);}&lt;br /&gt;
h5 {font-size: var(--font-size-105);}&lt;br /&gt;
/* h6 {font-size: var(--font-size-100);} modified 4 Jan 2025 */&lt;br /&gt;
h6 {font-size: var(--font-size-090);}&lt;br /&gt;
&lt;br /&gt;
h1, h3, h4, h5, h6 {&lt;br /&gt;
	font-family: Arial, Helvetica, sans-serif;&lt;br /&gt;
	color: var(--clr-DeepPurple-base-30); &lt;br /&gt;
	font-weight: 600;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text layout using padding - use vw for responsive */&lt;br /&gt;
/* 10px = 0.625rem; 20px = 1.25rem; 30px = 1.875rem; 40px = 2.5rem; */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
h5 { padding-left: 0.5vw; } &lt;br /&gt;
h6 { padding-left: 0.5vw; } &lt;br /&gt;
p  { padding-left: 1vw; padding-right:1vw; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* ordered list ol and altered padding for a nested list */&lt;br /&gt;
ol { display:block; position:relative; left:0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; padding-right:0.9vw; &lt;br /&gt;
     &amp;amp; ol { display:block; position:relative; left:-0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; list-style-type:lower-roman; }&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
/* Definition List */&lt;br /&gt;
dl { padding-left: 2.5vw; padding-right:2.5vw; } &lt;br /&gt;
dt { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
dd { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* 11 July 2025 Rows and Columns     */&lt;br /&gt;
&lt;br /&gt;
/* 26 July 2020 New row/column layout */&lt;br /&gt;
/* July 2025 Copied from www.mh370wiki.net ( with minor adjustments ) */&lt;br /&gt;
.Row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.column-left { display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-right: 1em; }&lt;br /&gt;
.column-center {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; margin-left: 1em; margin-right: 1em; }&lt;br /&gt;
.column-right {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-left: 1em; }&lt;br /&gt;
	&lt;br /&gt;
/* flex-basis determines column width */	&lt;br /&gt;
.col-width-75 { flex-basis: 75%; flex-shrink: 15;} /* usually main column 75% and Comments or Notes 25% */&lt;br /&gt;
.col-width-70 { flex-basis: 65%; flex-shrink: 13;} /* added 28 Oct 2020 to use with col-width-30 even though that is actually 33% */&lt;br /&gt;
.col-width-60 { flex-basis: 60%; flex-shrink: 12;} /* two columns in ratio 3:2 */&lt;br /&gt;
.col-width-50 { flex-basis: 50%; flex-shrink: 10;} /* two equal columns */&lt;br /&gt;
.col-width-40 { flex-basis: 40%; flex-shrink: 8;} &lt;br /&gt;
/*.col-width-30 { flex-basis: 33%; flex-shrink: 7;}  */&lt;br /&gt;
/* .col-width-30 { flex: 1 1 0;} /* 16 Nov 2020 If columns are equal then flex should be 1 1 0 */&lt;br /&gt;
.col-width-30 { flex-basis: 0; }&lt;br /&gt;
.col-width-25 { flex-basis: 25%; flex-shrink: 5;} /* usually right column  */&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1820</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1820"/>
		<updated>2025-08-21T09:13:31Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* #ca-nstab-ns_3400 { display:none !important; } */&lt;br /&gt;
&lt;br /&gt;
body.ns-0 #ca-nstab { display:none !important; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 5 August 2025 Added Colors for use in Sidebar and MediaWiki interface */&lt;br /&gt;
&lt;br /&gt;
/* Steel Blue */&lt;br /&gt;
:root { --SteelBlue-80: #B6CEE2;&lt;br /&gt;
        --SteelBlue-70: #91B6D4;&lt;br /&gt;
        --SteelBlue-60: #6C9DC6;&lt;br /&gt;
        --SteelBlue-50: #4785B8;&lt;br /&gt;
        --SteelBlue-40: #396A93;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tan */&lt;br /&gt;
:root { --Tan-90: #F1E7DA;&lt;br /&gt;
        --Tan-80: #E2CFB6;&lt;br /&gt;
        --Tan-70: #D4B791;&lt;br /&gt;
        --Tan-60: #C69F6C;&lt;br /&gt;
        --Tan-50: #B88747;&lt;br /&gt;
        --Tan-40: #936C39;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* Items sorted with lightest color shade first, approximating a Z order */&lt;br /&gt;
&lt;br /&gt;
#mw-head { background-color: var(--SteelBlue-80); } /* full width at top of screen, behind logo */&lt;br /&gt;
&lt;br /&gt;
/* mw-body-content is in front of mw-body */&lt;br /&gt;
.mw-body-content { background-color: #F2F2F2; border-radius: 1em; padding-top:2em; padding-bottom:2em; padding-left:2.5em; padding-right:2.5em; } &lt;br /&gt;
&lt;br /&gt;
.mw-body { background-color: var(--SteelBlue-70); } /* is background for everything below header and right of left panel and down to footer */&lt;br /&gt;
&lt;br /&gt;
.mw-footer { background-color: var(--SteelBlue-60); } /* does not extend to bottom of the screen */&lt;br /&gt;
&lt;br /&gt;
#mw-panel.vector-legacy-sidebar.collapsible-nav { background-color: var(--SteelBlue-50); } /* background for menu but extends to top of screen and behind logo and in front of header */&lt;br /&gt;
&lt;br /&gt;
body { background-color: var(--SteelBlue-40); } /* everything below mw-head, full width of screen, to bottom of screen */&lt;br /&gt;
&lt;br /&gt;
.catlinks { background-color: #bdccdb; } /* border on category row */&lt;br /&gt;
.mw-normal-catlinks { background-color: #ced8e4; padding-left:20px; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 2 August added class to standardised margins when displaying a category tree */&lt;br /&gt;
.displayCatTree { margin-left:4em; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 1 August 2025 Added a class to standardise page headers, plus a variant for category pages */&lt;br /&gt;
&lt;br /&gt;
.header { width:90%; &lt;br /&gt;
          margin-left:auto; margin-right:auto; margin-bottom:1em; padding-top:10px; padding-bottom:10px; &lt;br /&gt;
          text-align:justify;&lt;br /&gt;
          background-color: #cce6ff; border-color: #cce6ff; border-radius: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.cat { background-color: #e8f2fc; border-color: #e8f2fc; } /* pale shade of blue for header on category pages */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 attempt to indent unordered lists */&lt;br /&gt;
.mw-body-content ul { display:block; position:relative; left:1em; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } /* mw-body-content limits scope */&lt;br /&gt;
/* .ulNormal  { display:block; position:relative; left:2vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 added style for quoted text, adapted from mh370wiki.net, used instead of blockquote */&lt;br /&gt;
&lt;br /&gt;
.quote { width: 90%; background: #FAFAFA;    /* contrast against white page background */&lt;br /&gt;
         padding-left: 1em;; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em;  /* was px  */&lt;br /&gt;
         margin-left:auto; margin-right:auto; margin-top:0.5em; margin-bottom:0.5em;  &lt;br /&gt;
         text-align:justify; color: #000000;     /* black */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 27 July 2025 added left margin to images */&lt;br /&gt;
.mw-default-size { margin-left: 2em; } /* this is the container. applies to all images */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 25 July 2025 added style to indent &amp;lt;pre&amp;gt; Note: No dot required before pre */&lt;br /&gt;
&lt;br /&gt;
pre { width: 90%; margin-left: auto; margin-right: auto; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 22 July 2025 Added style to enlarge fonts on Tooltips but currently unable to change tooltip width */&lt;br /&gt;
&lt;br /&gt;
.mw-lingo-definition-text { font-size:125%; } /* Tooltip is also styled as a qtip in jquery.qtip.css */&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 20 July 2025 Fluid Typography and Font Variables */&lt;br /&gt;
/* Copied from mh370wiki.net and adapted for use here */&lt;br /&gt;
&lt;br /&gt;
/* Fluid Typography  - see Responsive And Fluid Typography With vh And vw Units&lt;br /&gt;
https://www.smashingmagazine.com/2016/05/fluid-typography/ &lt;br /&gt;
Unlike responsive typography, which changes only at set breakpoints,&lt;br /&gt;
fluid typography resizes smoothly to match any device width.&lt;br /&gt;
*/&lt;br /&gt;
/* Variables for font size ( to be used in Vector.css ) see https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
&lt;br /&gt;
/*   Clamp() for min, preferred, max font size see https://developer.mozilla.org/en-US/docs/Web/CSS/clamp() */&lt;br /&gt;
/* Notes on font sizes&lt;br /&gt;
The default text size in browsers is 16px. So, the default size of 1em is 16px.&lt;br /&gt;
rem (root em) references the base font size of the document.&lt;br /&gt;
Assuming that the base font size is 16px, we get the following values:&lt;br /&gt;
1rem = 16px&lt;br /&gt;
1.5rem = 24px&lt;br /&gt;
0.5rem = 8px&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/* Use clamp ( min preferred max ) */&lt;br /&gt;
:root { font-size: clamp( 1vw, 1.05rem, 1.2vw ); } &lt;br /&gt;
&lt;br /&gt;
/* Font sizes using variables from https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
/* Example   font-size: var(--font-size-100);   */&lt;br /&gt;
:root { --font-size-625: 62.5%;  /* 62.5% of root font size */&lt;br /&gt;
        --font-size-875: 87.5%;  /* 87.5% x root font size  */&lt;br /&gt;
        --font-size-090: 90%;    /* 90% x root font size    */&lt;br /&gt;
        --font-size-095: 95%;    /* 95% x root font size    */&lt;br /&gt;
        --font-size-100: 100%;   /* 100% = root font size   */&lt;br /&gt;
        --font-size-105: 105%;   /* 105% x root font size   */&lt;br /&gt;
        --font-size-110: 110%;   /* 110% x root font size   */&lt;br /&gt;
        --font-size-115: 115%;   /* 115% x root font size   */&lt;br /&gt;
        --font-size-120: 120%;   /* 120% x root font size   */        &lt;br /&gt;
        --font-size-125: 125%;   /* 125% x root font size   */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text Styles using Font Variables             */&lt;br /&gt;
&lt;br /&gt;
/* Font Sizes */&lt;br /&gt;
body { font-size: var(--font-size-100); }&lt;br /&gt;
p { font-size: var(--font-size-100); }&lt;br /&gt;
dl dt dd { font-size: var(--font-size-100); }&lt;br /&gt;
dd { margin-bottom: 1em; } /* added 11 Oct 2022 to space between a dd and the next dt */&lt;br /&gt;
/* ul ol li { font-size: var(--font-size-100); } */&lt;br /&gt;
&lt;br /&gt;
/* Headings are sized by percentage over the base font and also resize based on viewport width */&lt;br /&gt;
h1 {font-size: var(--font-size-125);}   	&lt;br /&gt;
h2 {font-size: var(--font-size-120);}   /* h2 was previously not defined */&lt;br /&gt;
h3 {font-size: var(--font-size-115);}&lt;br /&gt;
h4 {font-size: var(--font-size-110);}&lt;br /&gt;
h5 {font-size: var(--font-size-105);}&lt;br /&gt;
/* h6 {font-size: var(--font-size-100);} modified 4 Jan 2025 */&lt;br /&gt;
h6 {font-size: var(--font-size-090);}&lt;br /&gt;
&lt;br /&gt;
h1, h3, h4, h5, h6 {&lt;br /&gt;
	font-family: Arial, Helvetica, sans-serif;&lt;br /&gt;
	color: var(--clr-DeepPurple-base-30); &lt;br /&gt;
	font-weight: 600;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text layout using padding - use vw for responsive */&lt;br /&gt;
/* 10px = 0.625rem; 20px = 1.25rem; 30px = 1.875rem; 40px = 2.5rem; */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
h5 { padding-left: 0.5vw; } &lt;br /&gt;
h6 { padding-left: 0.5vw; } &lt;br /&gt;
p  { padding-left: 1vw; padding-right:1vw; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* ordered list ol and altered padding for a nested list */&lt;br /&gt;
ol { display:block; position:relative; left:0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; padding-right:0.9vw; &lt;br /&gt;
     &amp;amp; ol { display:block; position:relative; left:-0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; list-style-type:lower-roman; }&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
/* Definition List */&lt;br /&gt;
dl { padding-left: 2.5vw; padding-right:2.5vw; } &lt;br /&gt;
dt { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
dd { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* 11 July 2025 Rows and Columns     */&lt;br /&gt;
&lt;br /&gt;
/* 26 July 2020 New row/column layout */&lt;br /&gt;
/* July 2025 Copied from www.mh370wiki.net ( with minor adjustments ) */&lt;br /&gt;
.Row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.column-left { display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-right: 1em; }&lt;br /&gt;
.column-center {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; margin-left: 1em; margin-right: 1em; }&lt;br /&gt;
.column-right {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-left: 1em; }&lt;br /&gt;
	&lt;br /&gt;
/* flex-basis determines column width */	&lt;br /&gt;
.col-width-75 { flex-basis: 75%; flex-shrink: 15;} /* usually main column 75% and Comments or Notes 25% */&lt;br /&gt;
.col-width-70 { flex-basis: 65%; flex-shrink: 13;} /* added 28 Oct 2020 to use with col-width-30 even though that is actually 33% */&lt;br /&gt;
.col-width-60 { flex-basis: 60%; flex-shrink: 12;} /* two columns in ratio 3:2 */&lt;br /&gt;
.col-width-50 { flex-basis: 50%; flex-shrink: 10;} /* two equal columns */&lt;br /&gt;
.col-width-40 { flex-basis: 40%; flex-shrink: 8;} &lt;br /&gt;
/*.col-width-30 { flex-basis: 33%; flex-shrink: 7;}  */&lt;br /&gt;
/* .col-width-30 { flex: 1 1 0;} /* 16 Nov 2020 If columns are equal then flex should be 1 1 0 */&lt;br /&gt;
.col-width-30 { flex-basis: 0; }&lt;br /&gt;
.col-width-25 { flex-basis: 25%; flex-shrink: 5;} /* usually right column  */&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1819</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1819"/>
		<updated>2025-08-21T09:11:23Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* #ca-nstab-ns_3400 { display:none !important; } */&lt;br /&gt;
&lt;br /&gt;
body.ns-3400 #ca-nstab { display:none !important; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 5 August 2025 Added Colors for use in Sidebar and MediaWiki interface */&lt;br /&gt;
&lt;br /&gt;
/* Steel Blue */&lt;br /&gt;
:root { --SteelBlue-80: #B6CEE2;&lt;br /&gt;
        --SteelBlue-70: #91B6D4;&lt;br /&gt;
        --SteelBlue-60: #6C9DC6;&lt;br /&gt;
        --SteelBlue-50: #4785B8;&lt;br /&gt;
        --SteelBlue-40: #396A93;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tan */&lt;br /&gt;
:root { --Tan-90: #F1E7DA;&lt;br /&gt;
        --Tan-80: #E2CFB6;&lt;br /&gt;
        --Tan-70: #D4B791;&lt;br /&gt;
        --Tan-60: #C69F6C;&lt;br /&gt;
        --Tan-50: #B88747;&lt;br /&gt;
        --Tan-40: #936C39;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* Items sorted with lightest color shade first, approximating a Z order */&lt;br /&gt;
&lt;br /&gt;
#mw-head { background-color: var(--SteelBlue-80); } /* full width at top of screen, behind logo */&lt;br /&gt;
&lt;br /&gt;
/* mw-body-content is in front of mw-body */&lt;br /&gt;
.mw-body-content { background-color: #F2F2F2; border-radius: 1em; padding-top:2em; padding-bottom:2em; padding-left:2.5em; padding-right:2.5em; } &lt;br /&gt;
&lt;br /&gt;
.mw-body { background-color: var(--SteelBlue-70); } /* is background for everything below header and right of left panel and down to footer */&lt;br /&gt;
&lt;br /&gt;
.mw-footer { background-color: var(--SteelBlue-60); } /* does not extend to bottom of the screen */&lt;br /&gt;
&lt;br /&gt;
#mw-panel.vector-legacy-sidebar.collapsible-nav { background-color: var(--SteelBlue-50); } /* background for menu but extends to top of screen and behind logo and in front of header */&lt;br /&gt;
&lt;br /&gt;
body { background-color: var(--SteelBlue-40); } /* everything below mw-head, full width of screen, to bottom of screen */&lt;br /&gt;
&lt;br /&gt;
.catlinks { background-color: #bdccdb; } /* border on category row */&lt;br /&gt;
.mw-normal-catlinks { background-color: #ced8e4; padding-left:20px; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 2 August added class to standardised margins when displaying a category tree */&lt;br /&gt;
.displayCatTree { margin-left:4em; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 1 August 2025 Added a class to standardise page headers, plus a variant for category pages */&lt;br /&gt;
&lt;br /&gt;
.header { width:90%; &lt;br /&gt;
          margin-left:auto; margin-right:auto; margin-bottom:1em; padding-top:10px; padding-bottom:10px; &lt;br /&gt;
          text-align:justify;&lt;br /&gt;
          background-color: #cce6ff; border-color: #cce6ff; border-radius: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.cat { background-color: #e8f2fc; border-color: #e8f2fc; } /* pale shade of blue for header on category pages */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 attempt to indent unordered lists */&lt;br /&gt;
.mw-body-content ul { display:block; position:relative; left:1em; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } /* mw-body-content limits scope */&lt;br /&gt;
/* .ulNormal  { display:block; position:relative; left:2vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 added style for quoted text, adapted from mh370wiki.net, used instead of blockquote */&lt;br /&gt;
&lt;br /&gt;
.quote { width: 90%; background: #FAFAFA;    /* contrast against white page background */&lt;br /&gt;
         padding-left: 1em;; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em;  /* was px  */&lt;br /&gt;
         margin-left:auto; margin-right:auto; margin-top:0.5em; margin-bottom:0.5em;  &lt;br /&gt;
         text-align:justify; color: #000000;     /* black */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 27 July 2025 added left margin to images */&lt;br /&gt;
.mw-default-size { margin-left: 2em; } /* this is the container. applies to all images */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 25 July 2025 added style to indent &amp;lt;pre&amp;gt; Note: No dot required before pre */&lt;br /&gt;
&lt;br /&gt;
pre { width: 90%; margin-left: auto; margin-right: auto; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 22 July 2025 Added style to enlarge fonts on Tooltips but currently unable to change tooltip width */&lt;br /&gt;
&lt;br /&gt;
.mw-lingo-definition-text { font-size:125%; } /* Tooltip is also styled as a qtip in jquery.qtip.css */&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 20 July 2025 Fluid Typography and Font Variables */&lt;br /&gt;
/* Copied from mh370wiki.net and adapted for use here */&lt;br /&gt;
&lt;br /&gt;
/* Fluid Typography  - see Responsive And Fluid Typography With vh And vw Units&lt;br /&gt;
https://www.smashingmagazine.com/2016/05/fluid-typography/ &lt;br /&gt;
Unlike responsive typography, which changes only at set breakpoints,&lt;br /&gt;
fluid typography resizes smoothly to match any device width.&lt;br /&gt;
*/&lt;br /&gt;
/* Variables for font size ( to be used in Vector.css ) see https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
&lt;br /&gt;
/*   Clamp() for min, preferred, max font size see https://developer.mozilla.org/en-US/docs/Web/CSS/clamp() */&lt;br /&gt;
/* Notes on font sizes&lt;br /&gt;
The default text size in browsers is 16px. So, the default size of 1em is 16px.&lt;br /&gt;
rem (root em) references the base font size of the document.&lt;br /&gt;
Assuming that the base font size is 16px, we get the following values:&lt;br /&gt;
1rem = 16px&lt;br /&gt;
1.5rem = 24px&lt;br /&gt;
0.5rem = 8px&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/* Use clamp ( min preferred max ) */&lt;br /&gt;
:root { font-size: clamp( 1vw, 1.05rem, 1.2vw ); } &lt;br /&gt;
&lt;br /&gt;
/* Font sizes using variables from https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
/* Example   font-size: var(--font-size-100);   */&lt;br /&gt;
:root { --font-size-625: 62.5%;  /* 62.5% of root font size */&lt;br /&gt;
        --font-size-875: 87.5%;  /* 87.5% x root font size  */&lt;br /&gt;
        --font-size-090: 90%;    /* 90% x root font size    */&lt;br /&gt;
        --font-size-095: 95%;    /* 95% x root font size    */&lt;br /&gt;
        --font-size-100: 100%;   /* 100% = root font size   */&lt;br /&gt;
        --font-size-105: 105%;   /* 105% x root font size   */&lt;br /&gt;
        --font-size-110: 110%;   /* 110% x root font size   */&lt;br /&gt;
        --font-size-115: 115%;   /* 115% x root font size   */&lt;br /&gt;
        --font-size-120: 120%;   /* 120% x root font size   */        &lt;br /&gt;
        --font-size-125: 125%;   /* 125% x root font size   */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text Styles using Font Variables             */&lt;br /&gt;
&lt;br /&gt;
/* Font Sizes */&lt;br /&gt;
body { font-size: var(--font-size-100); }&lt;br /&gt;
p { font-size: var(--font-size-100); }&lt;br /&gt;
dl dt dd { font-size: var(--font-size-100); }&lt;br /&gt;
dd { margin-bottom: 1em; } /* added 11 Oct 2022 to space between a dd and the next dt */&lt;br /&gt;
/* ul ol li { font-size: var(--font-size-100); } */&lt;br /&gt;
&lt;br /&gt;
/* Headings are sized by percentage over the base font and also resize based on viewport width */&lt;br /&gt;
h1 {font-size: var(--font-size-125);}   	&lt;br /&gt;
h2 {font-size: var(--font-size-120);}   /* h2 was previously not defined */&lt;br /&gt;
h3 {font-size: var(--font-size-115);}&lt;br /&gt;
h4 {font-size: var(--font-size-110);}&lt;br /&gt;
h5 {font-size: var(--font-size-105);}&lt;br /&gt;
/* h6 {font-size: var(--font-size-100);} modified 4 Jan 2025 */&lt;br /&gt;
h6 {font-size: var(--font-size-090);}&lt;br /&gt;
&lt;br /&gt;
h1, h3, h4, h5, h6 {&lt;br /&gt;
	font-family: Arial, Helvetica, sans-serif;&lt;br /&gt;
	color: var(--clr-DeepPurple-base-30); &lt;br /&gt;
	font-weight: 600;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text layout using padding - use vw for responsive */&lt;br /&gt;
/* 10px = 0.625rem; 20px = 1.25rem; 30px = 1.875rem; 40px = 2.5rem; */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
h5 { padding-left: 0.5vw; } &lt;br /&gt;
h6 { padding-left: 0.5vw; } &lt;br /&gt;
p  { padding-left: 1vw; padding-right:1vw; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* ordered list ol and altered padding for a nested list */&lt;br /&gt;
ol { display:block; position:relative; left:0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; padding-right:0.9vw; &lt;br /&gt;
     &amp;amp; ol { display:block; position:relative; left:-0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; list-style-type:lower-roman; }&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
/* Definition List */&lt;br /&gt;
dl { padding-left: 2.5vw; padding-right:2.5vw; } &lt;br /&gt;
dt { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
dd { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* 11 July 2025 Rows and Columns     */&lt;br /&gt;
&lt;br /&gt;
/* 26 July 2020 New row/column layout */&lt;br /&gt;
/* July 2025 Copied from www.mh370wiki.net ( with minor adjustments ) */&lt;br /&gt;
.Row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.column-left { display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-right: 1em; }&lt;br /&gt;
.column-center {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; margin-left: 1em; margin-right: 1em; }&lt;br /&gt;
.column-right {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-left: 1em; }&lt;br /&gt;
	&lt;br /&gt;
/* flex-basis determines column width */	&lt;br /&gt;
.col-width-75 { flex-basis: 75%; flex-shrink: 15;} /* usually main column 75% and Comments or Notes 25% */&lt;br /&gt;
.col-width-70 { flex-basis: 65%; flex-shrink: 13;} /* added 28 Oct 2020 to use with col-width-30 even though that is actually 33% */&lt;br /&gt;
.col-width-60 { flex-basis: 60%; flex-shrink: 12;} /* two columns in ratio 3:2 */&lt;br /&gt;
.col-width-50 { flex-basis: 50%; flex-shrink: 10;} /* two equal columns */&lt;br /&gt;
.col-width-40 { flex-basis: 40%; flex-shrink: 8;} &lt;br /&gt;
/*.col-width-30 { flex-basis: 33%; flex-shrink: 7;}  */&lt;br /&gt;
/* .col-width-30 { flex: 1 1 0;} /* 16 Nov 2020 If columns are equal then flex should be 1 1 0 */&lt;br /&gt;
.col-width-30 { flex-basis: 0; }&lt;br /&gt;
.col-width-25 { flex-basis: 25%; flex-shrink: 5;} /* usually right column  */&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1818</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1818"/>
		<updated>2025-08-21T09:06:37Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#ca-nstab-ns_3400 { display:none !important; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 5 August 2025 Added Colors for use in Sidebar and MediaWiki interface */&lt;br /&gt;
&lt;br /&gt;
/* Steel Blue */&lt;br /&gt;
:root { --SteelBlue-80: #B6CEE2;&lt;br /&gt;
        --SteelBlue-70: #91B6D4;&lt;br /&gt;
        --SteelBlue-60: #6C9DC6;&lt;br /&gt;
        --SteelBlue-50: #4785B8;&lt;br /&gt;
        --SteelBlue-40: #396A93;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tan */&lt;br /&gt;
:root { --Tan-90: #F1E7DA;&lt;br /&gt;
        --Tan-80: #E2CFB6;&lt;br /&gt;
        --Tan-70: #D4B791;&lt;br /&gt;
        --Tan-60: #C69F6C;&lt;br /&gt;
        --Tan-50: #B88747;&lt;br /&gt;
        --Tan-40: #936C39;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* Items sorted with lightest color shade first, approximating a Z order */&lt;br /&gt;
&lt;br /&gt;
#mw-head { background-color: var(--SteelBlue-80); } /* full width at top of screen, behind logo */&lt;br /&gt;
&lt;br /&gt;
/* mw-body-content is in front of mw-body */&lt;br /&gt;
.mw-body-content { background-color: #F2F2F2; border-radius: 1em; padding-top:2em; padding-bottom:2em; padding-left:2.5em; padding-right:2.5em; } &lt;br /&gt;
&lt;br /&gt;
.mw-body { background-color: var(--SteelBlue-70); } /* is background for everything below header and right of left panel and down to footer */&lt;br /&gt;
&lt;br /&gt;
.mw-footer { background-color: var(--SteelBlue-60); } /* does not extend to bottom of the screen */&lt;br /&gt;
&lt;br /&gt;
#mw-panel.vector-legacy-sidebar.collapsible-nav { background-color: var(--SteelBlue-50); } /* background for menu but extends to top of screen and behind logo and in front of header */&lt;br /&gt;
&lt;br /&gt;
body { background-color: var(--SteelBlue-40); } /* everything below mw-head, full width of screen, to bottom of screen */&lt;br /&gt;
&lt;br /&gt;
.catlinks { background-color: #bdccdb; } /* border on category row */&lt;br /&gt;
.mw-normal-catlinks { background-color: #ced8e4; padding-left:20px; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 2 August added class to standardised margins when displaying a category tree */&lt;br /&gt;
.displayCatTree { margin-left:4em; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 1 August 2025 Added a class to standardise page headers, plus a variant for category pages */&lt;br /&gt;
&lt;br /&gt;
.header { width:90%; &lt;br /&gt;
          margin-left:auto; margin-right:auto; margin-bottom:1em; padding-top:10px; padding-bottom:10px; &lt;br /&gt;
          text-align:justify;&lt;br /&gt;
          background-color: #cce6ff; border-color: #cce6ff; border-radius: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.cat { background-color: #e8f2fc; border-color: #e8f2fc; } /* pale shade of blue for header on category pages */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 attempt to indent unordered lists */&lt;br /&gt;
.mw-body-content ul { display:block; position:relative; left:1em; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } /* mw-body-content limits scope */&lt;br /&gt;
/* .ulNormal  { display:block; position:relative; left:2vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 added style for quoted text, adapted from mh370wiki.net, used instead of blockquote */&lt;br /&gt;
&lt;br /&gt;
.quote { width: 90%; background: #FAFAFA;    /* contrast against white page background */&lt;br /&gt;
         padding-left: 1em;; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em;  /* was px  */&lt;br /&gt;
         margin-left:auto; margin-right:auto; margin-top:0.5em; margin-bottom:0.5em;  &lt;br /&gt;
         text-align:justify; color: #000000;     /* black */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 27 July 2025 added left margin to images */&lt;br /&gt;
.mw-default-size { margin-left: 2em; } /* this is the container. applies to all images */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 25 July 2025 added style to indent &amp;lt;pre&amp;gt; Note: No dot required before pre */&lt;br /&gt;
&lt;br /&gt;
pre { width: 90%; margin-left: auto; margin-right: auto; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 22 July 2025 Added style to enlarge fonts on Tooltips but currently unable to change tooltip width */&lt;br /&gt;
&lt;br /&gt;
.mw-lingo-definition-text { font-size:125%; } /* Tooltip is also styled as a qtip in jquery.qtip.css */&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 20 July 2025 Fluid Typography and Font Variables */&lt;br /&gt;
/* Copied from mh370wiki.net and adapted for use here */&lt;br /&gt;
&lt;br /&gt;
/* Fluid Typography  - see Responsive And Fluid Typography With vh And vw Units&lt;br /&gt;
https://www.smashingmagazine.com/2016/05/fluid-typography/ &lt;br /&gt;
Unlike responsive typography, which changes only at set breakpoints,&lt;br /&gt;
fluid typography resizes smoothly to match any device width.&lt;br /&gt;
*/&lt;br /&gt;
/* Variables for font size ( to be used in Vector.css ) see https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
&lt;br /&gt;
/*   Clamp() for min, preferred, max font size see https://developer.mozilla.org/en-US/docs/Web/CSS/clamp() */&lt;br /&gt;
/* Notes on font sizes&lt;br /&gt;
The default text size in browsers is 16px. So, the default size of 1em is 16px.&lt;br /&gt;
rem (root em) references the base font size of the document.&lt;br /&gt;
Assuming that the base font size is 16px, we get the following values:&lt;br /&gt;
1rem = 16px&lt;br /&gt;
1.5rem = 24px&lt;br /&gt;
0.5rem = 8px&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/* Use clamp ( min preferred max ) */&lt;br /&gt;
:root { font-size: clamp( 1vw, 1.05rem, 1.2vw ); } &lt;br /&gt;
&lt;br /&gt;
/* Font sizes using variables from https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
/* Example   font-size: var(--font-size-100);   */&lt;br /&gt;
:root { --font-size-625: 62.5%;  /* 62.5% of root font size */&lt;br /&gt;
        --font-size-875: 87.5%;  /* 87.5% x root font size  */&lt;br /&gt;
        --font-size-090: 90%;    /* 90% x root font size    */&lt;br /&gt;
        --font-size-095: 95%;    /* 95% x root font size    */&lt;br /&gt;
        --font-size-100: 100%;   /* 100% = root font size   */&lt;br /&gt;
        --font-size-105: 105%;   /* 105% x root font size   */&lt;br /&gt;
        --font-size-110: 110%;   /* 110% x root font size   */&lt;br /&gt;
        --font-size-115: 115%;   /* 115% x root font size   */&lt;br /&gt;
        --font-size-120: 120%;   /* 120% x root font size   */        &lt;br /&gt;
        --font-size-125: 125%;   /* 125% x root font size   */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text Styles using Font Variables             */&lt;br /&gt;
&lt;br /&gt;
/* Font Sizes */&lt;br /&gt;
body { font-size: var(--font-size-100); }&lt;br /&gt;
p { font-size: var(--font-size-100); }&lt;br /&gt;
dl dt dd { font-size: var(--font-size-100); }&lt;br /&gt;
dd { margin-bottom: 1em; } /* added 11 Oct 2022 to space between a dd and the next dt */&lt;br /&gt;
/* ul ol li { font-size: var(--font-size-100); } */&lt;br /&gt;
&lt;br /&gt;
/* Headings are sized by percentage over the base font and also resize based on viewport width */&lt;br /&gt;
h1 {font-size: var(--font-size-125);}   	&lt;br /&gt;
h2 {font-size: var(--font-size-120);}   /* h2 was previously not defined */&lt;br /&gt;
h3 {font-size: var(--font-size-115);}&lt;br /&gt;
h4 {font-size: var(--font-size-110);}&lt;br /&gt;
h5 {font-size: var(--font-size-105);}&lt;br /&gt;
/* h6 {font-size: var(--font-size-100);} modified 4 Jan 2025 */&lt;br /&gt;
h6 {font-size: var(--font-size-090);}&lt;br /&gt;
&lt;br /&gt;
h1, h3, h4, h5, h6 {&lt;br /&gt;
	font-family: Arial, Helvetica, sans-serif;&lt;br /&gt;
	color: var(--clr-DeepPurple-base-30); &lt;br /&gt;
	font-weight: 600;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text layout using padding - use vw for responsive */&lt;br /&gt;
/* 10px = 0.625rem; 20px = 1.25rem; 30px = 1.875rem; 40px = 2.5rem; */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
h5 { padding-left: 0.5vw; } &lt;br /&gt;
h6 { padding-left: 0.5vw; } &lt;br /&gt;
p  { padding-left: 1vw; padding-right:1vw; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* ordered list ol and altered padding for a nested list */&lt;br /&gt;
ol { display:block; position:relative; left:0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; padding-right:0.9vw; &lt;br /&gt;
     &amp;amp; ol { display:block; position:relative; left:-0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; list-style-type:lower-roman; }&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
/* Definition List */&lt;br /&gt;
dl { padding-left: 2.5vw; padding-right:2.5vw; } &lt;br /&gt;
dt { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
dd { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* 11 July 2025 Rows and Columns     */&lt;br /&gt;
&lt;br /&gt;
/* 26 July 2020 New row/column layout */&lt;br /&gt;
/* July 2025 Copied from www.mh370wiki.net ( with minor adjustments ) */&lt;br /&gt;
.Row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.column-left { display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-right: 1em; }&lt;br /&gt;
.column-center {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; margin-left: 1em; margin-right: 1em; }&lt;br /&gt;
.column-right {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-left: 1em; }&lt;br /&gt;
	&lt;br /&gt;
/* flex-basis determines column width */	&lt;br /&gt;
.col-width-75 { flex-basis: 75%; flex-shrink: 15;} /* usually main column 75% and Comments or Notes 25% */&lt;br /&gt;
.col-width-70 { flex-basis: 65%; flex-shrink: 13;} /* added 28 Oct 2020 to use with col-width-30 even though that is actually 33% */&lt;br /&gt;
.col-width-60 { flex-basis: 60%; flex-shrink: 12;} /* two columns in ratio 3:2 */&lt;br /&gt;
.col-width-50 { flex-basis: 50%; flex-shrink: 10;} /* two equal columns */&lt;br /&gt;
.col-width-40 { flex-basis: 40%; flex-shrink: 8;} &lt;br /&gt;
/*.col-width-30 { flex-basis: 33%; flex-shrink: 7;}  */&lt;br /&gt;
/* .col-width-30 { flex: 1 1 0;} /* 16 Nov 2020 If columns are equal then flex should be 1 1 0 */&lt;br /&gt;
.col-width-30 { flex-basis: 0; }&lt;br /&gt;
.col-width-25 { flex-basis: 25%; flex-shrink: 5;} /* usually right column  */&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1817</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1817"/>
		<updated>2025-08-21T09:05:58Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#ca-nstab-3400 { display:none !important; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 5 August 2025 Added Colors for use in Sidebar and MediaWiki interface */&lt;br /&gt;
&lt;br /&gt;
/* Steel Blue */&lt;br /&gt;
:root { --SteelBlue-80: #B6CEE2;&lt;br /&gt;
        --SteelBlue-70: #91B6D4;&lt;br /&gt;
        --SteelBlue-60: #6C9DC6;&lt;br /&gt;
        --SteelBlue-50: #4785B8;&lt;br /&gt;
        --SteelBlue-40: #396A93;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tan */&lt;br /&gt;
:root { --Tan-90: #F1E7DA;&lt;br /&gt;
        --Tan-80: #E2CFB6;&lt;br /&gt;
        --Tan-70: #D4B791;&lt;br /&gt;
        --Tan-60: #C69F6C;&lt;br /&gt;
        --Tan-50: #B88747;&lt;br /&gt;
        --Tan-40: #936C39;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* Items sorted with lightest color shade first, approximating a Z order */&lt;br /&gt;
&lt;br /&gt;
#mw-head { background-color: var(--SteelBlue-80); } /* full width at top of screen, behind logo */&lt;br /&gt;
&lt;br /&gt;
/* mw-body-content is in front of mw-body */&lt;br /&gt;
.mw-body-content { background-color: #F2F2F2; border-radius: 1em; padding-top:2em; padding-bottom:2em; padding-left:2.5em; padding-right:2.5em; } &lt;br /&gt;
&lt;br /&gt;
.mw-body { background-color: var(--SteelBlue-70); } /* is background for everything below header and right of left panel and down to footer */&lt;br /&gt;
&lt;br /&gt;
.mw-footer { background-color: var(--SteelBlue-60); } /* does not extend to bottom of the screen */&lt;br /&gt;
&lt;br /&gt;
#mw-panel.vector-legacy-sidebar.collapsible-nav { background-color: var(--SteelBlue-50); } /* background for menu but extends to top of screen and behind logo and in front of header */&lt;br /&gt;
&lt;br /&gt;
body { background-color: var(--SteelBlue-40); } /* everything below mw-head, full width of screen, to bottom of screen */&lt;br /&gt;
&lt;br /&gt;
.catlinks { background-color: #bdccdb; } /* border on category row */&lt;br /&gt;
.mw-normal-catlinks { background-color: #ced8e4; padding-left:20px; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 2 August added class to standardised margins when displaying a category tree */&lt;br /&gt;
.displayCatTree { margin-left:4em; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 1 August 2025 Added a class to standardise page headers, plus a variant for category pages */&lt;br /&gt;
&lt;br /&gt;
.header { width:90%; &lt;br /&gt;
          margin-left:auto; margin-right:auto; margin-bottom:1em; padding-top:10px; padding-bottom:10px; &lt;br /&gt;
          text-align:justify;&lt;br /&gt;
          background-color: #cce6ff; border-color: #cce6ff; border-radius: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.cat { background-color: #e8f2fc; border-color: #e8f2fc; } /* pale shade of blue for header on category pages */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 attempt to indent unordered lists */&lt;br /&gt;
.mw-body-content ul { display:block; position:relative; left:1em; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } /* mw-body-content limits scope */&lt;br /&gt;
/* .ulNormal  { display:block; position:relative; left:2vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 added style for quoted text, adapted from mh370wiki.net, used instead of blockquote */&lt;br /&gt;
&lt;br /&gt;
.quote { width: 90%; background: #FAFAFA;    /* contrast against white page background */&lt;br /&gt;
         padding-left: 1em;; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em;  /* was px  */&lt;br /&gt;
         margin-left:auto; margin-right:auto; margin-top:0.5em; margin-bottom:0.5em;  &lt;br /&gt;
         text-align:justify; color: #000000;     /* black */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 27 July 2025 added left margin to images */&lt;br /&gt;
.mw-default-size { margin-left: 2em; } /* this is the container. applies to all images */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 25 July 2025 added style to indent &amp;lt;pre&amp;gt; Note: No dot required before pre */&lt;br /&gt;
&lt;br /&gt;
pre { width: 90%; margin-left: auto; margin-right: auto; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 22 July 2025 Added style to enlarge fonts on Tooltips but currently unable to change tooltip width */&lt;br /&gt;
&lt;br /&gt;
.mw-lingo-definition-text { font-size:125%; } /* Tooltip is also styled as a qtip in jquery.qtip.css */&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 20 July 2025 Fluid Typography and Font Variables */&lt;br /&gt;
/* Copied from mh370wiki.net and adapted for use here */&lt;br /&gt;
&lt;br /&gt;
/* Fluid Typography  - see Responsive And Fluid Typography With vh And vw Units&lt;br /&gt;
https://www.smashingmagazine.com/2016/05/fluid-typography/ &lt;br /&gt;
Unlike responsive typography, which changes only at set breakpoints,&lt;br /&gt;
fluid typography resizes smoothly to match any device width.&lt;br /&gt;
*/&lt;br /&gt;
/* Variables for font size ( to be used in Vector.css ) see https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
&lt;br /&gt;
/*   Clamp() for min, preferred, max font size see https://developer.mozilla.org/en-US/docs/Web/CSS/clamp() */&lt;br /&gt;
/* Notes on font sizes&lt;br /&gt;
The default text size in browsers is 16px. So, the default size of 1em is 16px.&lt;br /&gt;
rem (root em) references the base font size of the document.&lt;br /&gt;
Assuming that the base font size is 16px, we get the following values:&lt;br /&gt;
1rem = 16px&lt;br /&gt;
1.5rem = 24px&lt;br /&gt;
0.5rem = 8px&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/* Use clamp ( min preferred max ) */&lt;br /&gt;
:root { font-size: clamp( 1vw, 1.05rem, 1.2vw ); } &lt;br /&gt;
&lt;br /&gt;
/* Font sizes using variables from https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
/* Example   font-size: var(--font-size-100);   */&lt;br /&gt;
:root { --font-size-625: 62.5%;  /* 62.5% of root font size */&lt;br /&gt;
        --font-size-875: 87.5%;  /* 87.5% x root font size  */&lt;br /&gt;
        --font-size-090: 90%;    /* 90% x root font size    */&lt;br /&gt;
        --font-size-095: 95%;    /* 95% x root font size    */&lt;br /&gt;
        --font-size-100: 100%;   /* 100% = root font size   */&lt;br /&gt;
        --font-size-105: 105%;   /* 105% x root font size   */&lt;br /&gt;
        --font-size-110: 110%;   /* 110% x root font size   */&lt;br /&gt;
        --font-size-115: 115%;   /* 115% x root font size   */&lt;br /&gt;
        --font-size-120: 120%;   /* 120% x root font size   */        &lt;br /&gt;
        --font-size-125: 125%;   /* 125% x root font size   */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text Styles using Font Variables             */&lt;br /&gt;
&lt;br /&gt;
/* Font Sizes */&lt;br /&gt;
body { font-size: var(--font-size-100); }&lt;br /&gt;
p { font-size: var(--font-size-100); }&lt;br /&gt;
dl dt dd { font-size: var(--font-size-100); }&lt;br /&gt;
dd { margin-bottom: 1em; } /* added 11 Oct 2022 to space between a dd and the next dt */&lt;br /&gt;
/* ul ol li { font-size: var(--font-size-100); } */&lt;br /&gt;
&lt;br /&gt;
/* Headings are sized by percentage over the base font and also resize based on viewport width */&lt;br /&gt;
h1 {font-size: var(--font-size-125);}   	&lt;br /&gt;
h2 {font-size: var(--font-size-120);}   /* h2 was previously not defined */&lt;br /&gt;
h3 {font-size: var(--font-size-115);}&lt;br /&gt;
h4 {font-size: var(--font-size-110);}&lt;br /&gt;
h5 {font-size: var(--font-size-105);}&lt;br /&gt;
/* h6 {font-size: var(--font-size-100);} modified 4 Jan 2025 */&lt;br /&gt;
h6 {font-size: var(--font-size-090);}&lt;br /&gt;
&lt;br /&gt;
h1, h3, h4, h5, h6 {&lt;br /&gt;
	font-family: Arial, Helvetica, sans-serif;&lt;br /&gt;
	color: var(--clr-DeepPurple-base-30); &lt;br /&gt;
	font-weight: 600;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text layout using padding - use vw for responsive */&lt;br /&gt;
/* 10px = 0.625rem; 20px = 1.25rem; 30px = 1.875rem; 40px = 2.5rem; */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
h5 { padding-left: 0.5vw; } &lt;br /&gt;
h6 { padding-left: 0.5vw; } &lt;br /&gt;
p  { padding-left: 1vw; padding-right:1vw; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* ordered list ol and altered padding for a nested list */&lt;br /&gt;
ol { display:block; position:relative; left:0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; padding-right:0.9vw; &lt;br /&gt;
     &amp;amp; ol { display:block; position:relative; left:-0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; list-style-type:lower-roman; }&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
/* Definition List */&lt;br /&gt;
dl { padding-left: 2.5vw; padding-right:2.5vw; } &lt;br /&gt;
dt { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
dd { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* 11 July 2025 Rows and Columns     */&lt;br /&gt;
&lt;br /&gt;
/* 26 July 2020 New row/column layout */&lt;br /&gt;
/* July 2025 Copied from www.mh370wiki.net ( with minor adjustments ) */&lt;br /&gt;
.Row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.column-left { display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-right: 1em; }&lt;br /&gt;
.column-center {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; margin-left: 1em; margin-right: 1em; }&lt;br /&gt;
.column-right {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-left: 1em; }&lt;br /&gt;
	&lt;br /&gt;
/* flex-basis determines column width */	&lt;br /&gt;
.col-width-75 { flex-basis: 75%; flex-shrink: 15;} /* usually main column 75% and Comments or Notes 25% */&lt;br /&gt;
.col-width-70 { flex-basis: 65%; flex-shrink: 13;} /* added 28 Oct 2020 to use with col-width-30 even though that is actually 33% */&lt;br /&gt;
.col-width-60 { flex-basis: 60%; flex-shrink: 12;} /* two columns in ratio 3:2 */&lt;br /&gt;
.col-width-50 { flex-basis: 50%; flex-shrink: 10;} /* two equal columns */&lt;br /&gt;
.col-width-40 { flex-basis: 40%; flex-shrink: 8;} &lt;br /&gt;
/*.col-width-30 { flex-basis: 33%; flex-shrink: 7;}  */&lt;br /&gt;
/* .col-width-30 { flex: 1 1 0;} /* 16 Nov 2020 If columns are equal then flex should be 1 1 0 */&lt;br /&gt;
.col-width-30 { flex-basis: 0; }&lt;br /&gt;
.col-width-25 { flex-basis: 25%; flex-shrink: 5;} /* usually right column  */&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1816</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1816"/>
		<updated>2025-08-21T09:05:17Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
.body.ns-3400 #ca-nstab { display:none !important; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 5 August 2025 Added Colors for use in Sidebar and MediaWiki interface */&lt;br /&gt;
&lt;br /&gt;
/* Steel Blue */&lt;br /&gt;
:root { --SteelBlue-80: #B6CEE2;&lt;br /&gt;
        --SteelBlue-70: #91B6D4;&lt;br /&gt;
        --SteelBlue-60: #6C9DC6;&lt;br /&gt;
        --SteelBlue-50: #4785B8;&lt;br /&gt;
        --SteelBlue-40: #396A93;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tan */&lt;br /&gt;
:root { --Tan-90: #F1E7DA;&lt;br /&gt;
        --Tan-80: #E2CFB6;&lt;br /&gt;
        --Tan-70: #D4B791;&lt;br /&gt;
        --Tan-60: #C69F6C;&lt;br /&gt;
        --Tan-50: #B88747;&lt;br /&gt;
        --Tan-40: #936C39;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* Items sorted with lightest color shade first, approximating a Z order */&lt;br /&gt;
&lt;br /&gt;
#mw-head { background-color: var(--SteelBlue-80); } /* full width at top of screen, behind logo */&lt;br /&gt;
&lt;br /&gt;
/* mw-body-content is in front of mw-body */&lt;br /&gt;
.mw-body-content { background-color: #F2F2F2; border-radius: 1em; padding-top:2em; padding-bottom:2em; padding-left:2.5em; padding-right:2.5em; } &lt;br /&gt;
&lt;br /&gt;
.mw-body { background-color: var(--SteelBlue-70); } /* is background for everything below header and right of left panel and down to footer */&lt;br /&gt;
&lt;br /&gt;
.mw-footer { background-color: var(--SteelBlue-60); } /* does not extend to bottom of the screen */&lt;br /&gt;
&lt;br /&gt;
#mw-panel.vector-legacy-sidebar.collapsible-nav { background-color: var(--SteelBlue-50); } /* background for menu but extends to top of screen and behind logo and in front of header */&lt;br /&gt;
&lt;br /&gt;
body { background-color: var(--SteelBlue-40); } /* everything below mw-head, full width of screen, to bottom of screen */&lt;br /&gt;
&lt;br /&gt;
.catlinks { background-color: #bdccdb; } /* border on category row */&lt;br /&gt;
.mw-normal-catlinks { background-color: #ced8e4; padding-left:20px; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 2 August added class to standardised margins when displaying a category tree */&lt;br /&gt;
.displayCatTree { margin-left:4em; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 1 August 2025 Added a class to standardise page headers, plus a variant for category pages */&lt;br /&gt;
&lt;br /&gt;
.header { width:90%; &lt;br /&gt;
          margin-left:auto; margin-right:auto; margin-bottom:1em; padding-top:10px; padding-bottom:10px; &lt;br /&gt;
          text-align:justify;&lt;br /&gt;
          background-color: #cce6ff; border-color: #cce6ff; border-radius: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.cat { background-color: #e8f2fc; border-color: #e8f2fc; } /* pale shade of blue for header on category pages */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 attempt to indent unordered lists */&lt;br /&gt;
.mw-body-content ul { display:block; position:relative; left:1em; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } /* mw-body-content limits scope */&lt;br /&gt;
/* .ulNormal  { display:block; position:relative; left:2vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 added style for quoted text, adapted from mh370wiki.net, used instead of blockquote */&lt;br /&gt;
&lt;br /&gt;
.quote { width: 90%; background: #FAFAFA;    /* contrast against white page background */&lt;br /&gt;
         padding-left: 1em;; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em;  /* was px  */&lt;br /&gt;
         margin-left:auto; margin-right:auto; margin-top:0.5em; margin-bottom:0.5em;  &lt;br /&gt;
         text-align:justify; color: #000000;     /* black */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 27 July 2025 added left margin to images */&lt;br /&gt;
.mw-default-size { margin-left: 2em; } /* this is the container. applies to all images */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 25 July 2025 added style to indent &amp;lt;pre&amp;gt; Note: No dot required before pre */&lt;br /&gt;
&lt;br /&gt;
pre { width: 90%; margin-left: auto; margin-right: auto; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 22 July 2025 Added style to enlarge fonts on Tooltips but currently unable to change tooltip width */&lt;br /&gt;
&lt;br /&gt;
.mw-lingo-definition-text { font-size:125%; } /* Tooltip is also styled as a qtip in jquery.qtip.css */&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 20 July 2025 Fluid Typography and Font Variables */&lt;br /&gt;
/* Copied from mh370wiki.net and adapted for use here */&lt;br /&gt;
&lt;br /&gt;
/* Fluid Typography  - see Responsive And Fluid Typography With vh And vw Units&lt;br /&gt;
https://www.smashingmagazine.com/2016/05/fluid-typography/ &lt;br /&gt;
Unlike responsive typography, which changes only at set breakpoints,&lt;br /&gt;
fluid typography resizes smoothly to match any device width.&lt;br /&gt;
*/&lt;br /&gt;
/* Variables for font size ( to be used in Vector.css ) see https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
&lt;br /&gt;
/*   Clamp() for min, preferred, max font size see https://developer.mozilla.org/en-US/docs/Web/CSS/clamp() */&lt;br /&gt;
/* Notes on font sizes&lt;br /&gt;
The default text size in browsers is 16px. So, the default size of 1em is 16px.&lt;br /&gt;
rem (root em) references the base font size of the document.&lt;br /&gt;
Assuming that the base font size is 16px, we get the following values:&lt;br /&gt;
1rem = 16px&lt;br /&gt;
1.5rem = 24px&lt;br /&gt;
0.5rem = 8px&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/* Use clamp ( min preferred max ) */&lt;br /&gt;
:root { font-size: clamp( 1vw, 1.05rem, 1.2vw ); } &lt;br /&gt;
&lt;br /&gt;
/* Font sizes using variables from https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
/* Example   font-size: var(--font-size-100);   */&lt;br /&gt;
:root { --font-size-625: 62.5%;  /* 62.5% of root font size */&lt;br /&gt;
        --font-size-875: 87.5%;  /* 87.5% x root font size  */&lt;br /&gt;
        --font-size-090: 90%;    /* 90% x root font size    */&lt;br /&gt;
        --font-size-095: 95%;    /* 95% x root font size    */&lt;br /&gt;
        --font-size-100: 100%;   /* 100% = root font size   */&lt;br /&gt;
        --font-size-105: 105%;   /* 105% x root font size   */&lt;br /&gt;
        --font-size-110: 110%;   /* 110% x root font size   */&lt;br /&gt;
        --font-size-115: 115%;   /* 115% x root font size   */&lt;br /&gt;
        --font-size-120: 120%;   /* 120% x root font size   */        &lt;br /&gt;
        --font-size-125: 125%;   /* 125% x root font size   */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text Styles using Font Variables             */&lt;br /&gt;
&lt;br /&gt;
/* Font Sizes */&lt;br /&gt;
body { font-size: var(--font-size-100); }&lt;br /&gt;
p { font-size: var(--font-size-100); }&lt;br /&gt;
dl dt dd { font-size: var(--font-size-100); }&lt;br /&gt;
dd { margin-bottom: 1em; } /* added 11 Oct 2022 to space between a dd and the next dt */&lt;br /&gt;
/* ul ol li { font-size: var(--font-size-100); } */&lt;br /&gt;
&lt;br /&gt;
/* Headings are sized by percentage over the base font and also resize based on viewport width */&lt;br /&gt;
h1 {font-size: var(--font-size-125);}   	&lt;br /&gt;
h2 {font-size: var(--font-size-120);}   /* h2 was previously not defined */&lt;br /&gt;
h3 {font-size: var(--font-size-115);}&lt;br /&gt;
h4 {font-size: var(--font-size-110);}&lt;br /&gt;
h5 {font-size: var(--font-size-105);}&lt;br /&gt;
/* h6 {font-size: var(--font-size-100);} modified 4 Jan 2025 */&lt;br /&gt;
h6 {font-size: var(--font-size-090);}&lt;br /&gt;
&lt;br /&gt;
h1, h3, h4, h5, h6 {&lt;br /&gt;
	font-family: Arial, Helvetica, sans-serif;&lt;br /&gt;
	color: var(--clr-DeepPurple-base-30); &lt;br /&gt;
	font-weight: 600;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text layout using padding - use vw for responsive */&lt;br /&gt;
/* 10px = 0.625rem; 20px = 1.25rem; 30px = 1.875rem; 40px = 2.5rem; */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
h5 { padding-left: 0.5vw; } &lt;br /&gt;
h6 { padding-left: 0.5vw; } &lt;br /&gt;
p  { padding-left: 1vw; padding-right:1vw; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* ordered list ol and altered padding for a nested list */&lt;br /&gt;
ol { display:block; position:relative; left:0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; padding-right:0.9vw; &lt;br /&gt;
     &amp;amp; ol { display:block; position:relative; left:-0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; list-style-type:lower-roman; }&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
/* Definition List */&lt;br /&gt;
dl { padding-left: 2.5vw; padding-right:2.5vw; } &lt;br /&gt;
dt { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
dd { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* 11 July 2025 Rows and Columns     */&lt;br /&gt;
&lt;br /&gt;
/* 26 July 2020 New row/column layout */&lt;br /&gt;
/* July 2025 Copied from www.mh370wiki.net ( with minor adjustments ) */&lt;br /&gt;
.Row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.column-left { display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-right: 1em; }&lt;br /&gt;
.column-center {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; margin-left: 1em; margin-right: 1em; }&lt;br /&gt;
.column-right {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-left: 1em; }&lt;br /&gt;
	&lt;br /&gt;
/* flex-basis determines column width */	&lt;br /&gt;
.col-width-75 { flex-basis: 75%; flex-shrink: 15;} /* usually main column 75% and Comments or Notes 25% */&lt;br /&gt;
.col-width-70 { flex-basis: 65%; flex-shrink: 13;} /* added 28 Oct 2020 to use with col-width-30 even though that is actually 33% */&lt;br /&gt;
.col-width-60 { flex-basis: 60%; flex-shrink: 12;} /* two columns in ratio 3:2 */&lt;br /&gt;
.col-width-50 { flex-basis: 50%; flex-shrink: 10;} /* two equal columns */&lt;br /&gt;
.col-width-40 { flex-basis: 40%; flex-shrink: 8;} &lt;br /&gt;
/*.col-width-30 { flex-basis: 33%; flex-shrink: 7;}  */&lt;br /&gt;
/* .col-width-30 { flex: 1 1 0;} /* 16 Nov 2020 If columns are equal then flex should be 1 1 0 */&lt;br /&gt;
.col-width-30 { flex-basis: 0; }&lt;br /&gt;
.col-width-25 { flex-basis: 25%; flex-shrink: 5;} /* usually right column  */&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1815</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1815"/>
		<updated>2025-08-21T09:04:16Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#ca-nstab-ns-3400 { display:none !important; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 5 August 2025 Added Colors for use in Sidebar and MediaWiki interface */&lt;br /&gt;
&lt;br /&gt;
/* Steel Blue */&lt;br /&gt;
:root { --SteelBlue-80: #B6CEE2;&lt;br /&gt;
        --SteelBlue-70: #91B6D4;&lt;br /&gt;
        --SteelBlue-60: #6C9DC6;&lt;br /&gt;
        --SteelBlue-50: #4785B8;&lt;br /&gt;
        --SteelBlue-40: #396A93;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tan */&lt;br /&gt;
:root { --Tan-90: #F1E7DA;&lt;br /&gt;
        --Tan-80: #E2CFB6;&lt;br /&gt;
        --Tan-70: #D4B791;&lt;br /&gt;
        --Tan-60: #C69F6C;&lt;br /&gt;
        --Tan-50: #B88747;&lt;br /&gt;
        --Tan-40: #936C39;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* Items sorted with lightest color shade first, approximating a Z order */&lt;br /&gt;
&lt;br /&gt;
#mw-head { background-color: var(--SteelBlue-80); } /* full width at top of screen, behind logo */&lt;br /&gt;
&lt;br /&gt;
/* mw-body-content is in front of mw-body */&lt;br /&gt;
.mw-body-content { background-color: #F2F2F2; border-radius: 1em; padding-top:2em; padding-bottom:2em; padding-left:2.5em; padding-right:2.5em; } &lt;br /&gt;
&lt;br /&gt;
.mw-body { background-color: var(--SteelBlue-70); } /* is background for everything below header and right of left panel and down to footer */&lt;br /&gt;
&lt;br /&gt;
.mw-footer { background-color: var(--SteelBlue-60); } /* does not extend to bottom of the screen */&lt;br /&gt;
&lt;br /&gt;
#mw-panel.vector-legacy-sidebar.collapsible-nav { background-color: var(--SteelBlue-50); } /* background for menu but extends to top of screen and behind logo and in front of header */&lt;br /&gt;
&lt;br /&gt;
body { background-color: var(--SteelBlue-40); } /* everything below mw-head, full width of screen, to bottom of screen */&lt;br /&gt;
&lt;br /&gt;
.catlinks { background-color: #bdccdb; } /* border on category row */&lt;br /&gt;
.mw-normal-catlinks { background-color: #ced8e4; padding-left:20px; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 2 August added class to standardised margins when displaying a category tree */&lt;br /&gt;
.displayCatTree { margin-left:4em; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 1 August 2025 Added a class to standardise page headers, plus a variant for category pages */&lt;br /&gt;
&lt;br /&gt;
.header { width:90%; &lt;br /&gt;
          margin-left:auto; margin-right:auto; margin-bottom:1em; padding-top:10px; padding-bottom:10px; &lt;br /&gt;
          text-align:justify;&lt;br /&gt;
          background-color: #cce6ff; border-color: #cce6ff; border-radius: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.cat { background-color: #e8f2fc; border-color: #e8f2fc; } /* pale shade of blue for header on category pages */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 attempt to indent unordered lists */&lt;br /&gt;
.mw-body-content ul { display:block; position:relative; left:1em; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } /* mw-body-content limits scope */&lt;br /&gt;
/* .ulNormal  { display:block; position:relative; left:2vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 added style for quoted text, adapted from mh370wiki.net, used instead of blockquote */&lt;br /&gt;
&lt;br /&gt;
.quote { width: 90%; background: #FAFAFA;    /* contrast against white page background */&lt;br /&gt;
         padding-left: 1em;; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em;  /* was px  */&lt;br /&gt;
         margin-left:auto; margin-right:auto; margin-top:0.5em; margin-bottom:0.5em;  &lt;br /&gt;
         text-align:justify; color: #000000;     /* black */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 27 July 2025 added left margin to images */&lt;br /&gt;
.mw-default-size { margin-left: 2em; } /* this is the container. applies to all images */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 25 July 2025 added style to indent &amp;lt;pre&amp;gt; Note: No dot required before pre */&lt;br /&gt;
&lt;br /&gt;
pre { width: 90%; margin-left: auto; margin-right: auto; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 22 July 2025 Added style to enlarge fonts on Tooltips but currently unable to change tooltip width */&lt;br /&gt;
&lt;br /&gt;
.mw-lingo-definition-text { font-size:125%; } /* Tooltip is also styled as a qtip in jquery.qtip.css */&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 20 July 2025 Fluid Typography and Font Variables */&lt;br /&gt;
/* Copied from mh370wiki.net and adapted for use here */&lt;br /&gt;
&lt;br /&gt;
/* Fluid Typography  - see Responsive And Fluid Typography With vh And vw Units&lt;br /&gt;
https://www.smashingmagazine.com/2016/05/fluid-typography/ &lt;br /&gt;
Unlike responsive typography, which changes only at set breakpoints,&lt;br /&gt;
fluid typography resizes smoothly to match any device width.&lt;br /&gt;
*/&lt;br /&gt;
/* Variables for font size ( to be used in Vector.css ) see https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
&lt;br /&gt;
/*   Clamp() for min, preferred, max font size see https://developer.mozilla.org/en-US/docs/Web/CSS/clamp() */&lt;br /&gt;
/* Notes on font sizes&lt;br /&gt;
The default text size in browsers is 16px. So, the default size of 1em is 16px.&lt;br /&gt;
rem (root em) references the base font size of the document.&lt;br /&gt;
Assuming that the base font size is 16px, we get the following values:&lt;br /&gt;
1rem = 16px&lt;br /&gt;
1.5rem = 24px&lt;br /&gt;
0.5rem = 8px&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/* Use clamp ( min preferred max ) */&lt;br /&gt;
:root { font-size: clamp( 1vw, 1.05rem, 1.2vw ); } &lt;br /&gt;
&lt;br /&gt;
/* Font sizes using variables from https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
/* Example   font-size: var(--font-size-100);   */&lt;br /&gt;
:root { --font-size-625: 62.5%;  /* 62.5% of root font size */&lt;br /&gt;
        --font-size-875: 87.5%;  /* 87.5% x root font size  */&lt;br /&gt;
        --font-size-090: 90%;    /* 90% x root font size    */&lt;br /&gt;
        --font-size-095: 95%;    /* 95% x root font size    */&lt;br /&gt;
        --font-size-100: 100%;   /* 100% = root font size   */&lt;br /&gt;
        --font-size-105: 105%;   /* 105% x root font size   */&lt;br /&gt;
        --font-size-110: 110%;   /* 110% x root font size   */&lt;br /&gt;
        --font-size-115: 115%;   /* 115% x root font size   */&lt;br /&gt;
        --font-size-120: 120%;   /* 120% x root font size   */        &lt;br /&gt;
        --font-size-125: 125%;   /* 125% x root font size   */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text Styles using Font Variables             */&lt;br /&gt;
&lt;br /&gt;
/* Font Sizes */&lt;br /&gt;
body { font-size: var(--font-size-100); }&lt;br /&gt;
p { font-size: var(--font-size-100); }&lt;br /&gt;
dl dt dd { font-size: var(--font-size-100); }&lt;br /&gt;
dd { margin-bottom: 1em; } /* added 11 Oct 2022 to space between a dd and the next dt */&lt;br /&gt;
/* ul ol li { font-size: var(--font-size-100); } */&lt;br /&gt;
&lt;br /&gt;
/* Headings are sized by percentage over the base font and also resize based on viewport width */&lt;br /&gt;
h1 {font-size: var(--font-size-125);}   	&lt;br /&gt;
h2 {font-size: var(--font-size-120);}   /* h2 was previously not defined */&lt;br /&gt;
h3 {font-size: var(--font-size-115);}&lt;br /&gt;
h4 {font-size: var(--font-size-110);}&lt;br /&gt;
h5 {font-size: var(--font-size-105);}&lt;br /&gt;
/* h6 {font-size: var(--font-size-100);} modified 4 Jan 2025 */&lt;br /&gt;
h6 {font-size: var(--font-size-090);}&lt;br /&gt;
&lt;br /&gt;
h1, h3, h4, h5, h6 {&lt;br /&gt;
	font-family: Arial, Helvetica, sans-serif;&lt;br /&gt;
	color: var(--clr-DeepPurple-base-30); &lt;br /&gt;
	font-weight: 600;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text layout using padding - use vw for responsive */&lt;br /&gt;
/* 10px = 0.625rem; 20px = 1.25rem; 30px = 1.875rem; 40px = 2.5rem; */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
h5 { padding-left: 0.5vw; } &lt;br /&gt;
h6 { padding-left: 0.5vw; } &lt;br /&gt;
p  { padding-left: 1vw; padding-right:1vw; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* ordered list ol and altered padding for a nested list */&lt;br /&gt;
ol { display:block; position:relative; left:0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; padding-right:0.9vw; &lt;br /&gt;
     &amp;amp; ol { display:block; position:relative; left:-0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; list-style-type:lower-roman; }&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
/* Definition List */&lt;br /&gt;
dl { padding-left: 2.5vw; padding-right:2.5vw; } &lt;br /&gt;
dt { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
dd { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* 11 July 2025 Rows and Columns     */&lt;br /&gt;
&lt;br /&gt;
/* 26 July 2020 New row/column layout */&lt;br /&gt;
/* July 2025 Copied from www.mh370wiki.net ( with minor adjustments ) */&lt;br /&gt;
.Row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.column-left { display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-right: 1em; }&lt;br /&gt;
.column-center {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; margin-left: 1em; margin-right: 1em; }&lt;br /&gt;
.column-right {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-left: 1em; }&lt;br /&gt;
	&lt;br /&gt;
/* flex-basis determines column width */	&lt;br /&gt;
.col-width-75 { flex-basis: 75%; flex-shrink: 15;} /* usually main column 75% and Comments or Notes 25% */&lt;br /&gt;
.col-width-70 { flex-basis: 65%; flex-shrink: 13;} /* added 28 Oct 2020 to use with col-width-30 even though that is actually 33% */&lt;br /&gt;
.col-width-60 { flex-basis: 60%; flex-shrink: 12;} /* two columns in ratio 3:2 */&lt;br /&gt;
.col-width-50 { flex-basis: 50%; flex-shrink: 10;} /* two equal columns */&lt;br /&gt;
.col-width-40 { flex-basis: 40%; flex-shrink: 8;} &lt;br /&gt;
/*.col-width-30 { flex-basis: 33%; flex-shrink: 7;}  */&lt;br /&gt;
/* .col-width-30 { flex: 1 1 0;} /* 16 Nov 2020 If columns are equal then flex should be 1 1 0 */&lt;br /&gt;
.col-width-30 { flex-basis: 0; }&lt;br /&gt;
.col-width-25 { flex-basis: 25%; flex-shrink: 5;} /* usually right column  */&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1814</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1814"/>
		<updated>2025-08-21T09:00:17Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#ca-nstab-3400 { display:none !important; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 5 August 2025 Added Colors for use in Sidebar and MediaWiki interface */&lt;br /&gt;
&lt;br /&gt;
/* Steel Blue */&lt;br /&gt;
:root { --SteelBlue-80: #B6CEE2;&lt;br /&gt;
        --SteelBlue-70: #91B6D4;&lt;br /&gt;
        --SteelBlue-60: #6C9DC6;&lt;br /&gt;
        --SteelBlue-50: #4785B8;&lt;br /&gt;
        --SteelBlue-40: #396A93;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tan */&lt;br /&gt;
:root { --Tan-90: #F1E7DA;&lt;br /&gt;
        --Tan-80: #E2CFB6;&lt;br /&gt;
        --Tan-70: #D4B791;&lt;br /&gt;
        --Tan-60: #C69F6C;&lt;br /&gt;
        --Tan-50: #B88747;&lt;br /&gt;
        --Tan-40: #936C39;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* Items sorted with lightest color shade first, approximating a Z order */&lt;br /&gt;
&lt;br /&gt;
#mw-head { background-color: var(--SteelBlue-80); } /* full width at top of screen, behind logo */&lt;br /&gt;
&lt;br /&gt;
/* mw-body-content is in front of mw-body */&lt;br /&gt;
.mw-body-content { background-color: #F2F2F2; border-radius: 1em; padding-top:2em; padding-bottom:2em; padding-left:2.5em; padding-right:2.5em; } &lt;br /&gt;
&lt;br /&gt;
.mw-body { background-color: var(--SteelBlue-70); } /* is background for everything below header and right of left panel and down to footer */&lt;br /&gt;
&lt;br /&gt;
.mw-footer { background-color: var(--SteelBlue-60); } /* does not extend to bottom of the screen */&lt;br /&gt;
&lt;br /&gt;
#mw-panel.vector-legacy-sidebar.collapsible-nav { background-color: var(--SteelBlue-50); } /* background for menu but extends to top of screen and behind logo and in front of header */&lt;br /&gt;
&lt;br /&gt;
body { background-color: var(--SteelBlue-40); } /* everything below mw-head, full width of screen, to bottom of screen */&lt;br /&gt;
&lt;br /&gt;
.catlinks { background-color: #bdccdb; } /* border on category row */&lt;br /&gt;
.mw-normal-catlinks { background-color: #ced8e4; padding-left:20px; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 2 August added class to standardised margins when displaying a category tree */&lt;br /&gt;
.displayCatTree { margin-left:4em; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 1 August 2025 Added a class to standardise page headers, plus a variant for category pages */&lt;br /&gt;
&lt;br /&gt;
.header { width:90%; &lt;br /&gt;
          margin-left:auto; margin-right:auto; margin-bottom:1em; padding-top:10px; padding-bottom:10px; &lt;br /&gt;
          text-align:justify;&lt;br /&gt;
          background-color: #cce6ff; border-color: #cce6ff; border-radius: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.cat { background-color: #e8f2fc; border-color: #e8f2fc; } /* pale shade of blue for header on category pages */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 attempt to indent unordered lists */&lt;br /&gt;
.mw-body-content ul { display:block; position:relative; left:1em; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } /* mw-body-content limits scope */&lt;br /&gt;
/* .ulNormal  { display:block; position:relative; left:2vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 added style for quoted text, adapted from mh370wiki.net, used instead of blockquote */&lt;br /&gt;
&lt;br /&gt;
.quote { width: 90%; background: #FAFAFA;    /* contrast against white page background */&lt;br /&gt;
         padding-left: 1em;; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em;  /* was px  */&lt;br /&gt;
         margin-left:auto; margin-right:auto; margin-top:0.5em; margin-bottom:0.5em;  &lt;br /&gt;
         text-align:justify; color: #000000;     /* black */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 27 July 2025 added left margin to images */&lt;br /&gt;
.mw-default-size { margin-left: 2em; } /* this is the container. applies to all images */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 25 July 2025 added style to indent &amp;lt;pre&amp;gt; Note: No dot required before pre */&lt;br /&gt;
&lt;br /&gt;
pre { width: 90%; margin-left: auto; margin-right: auto; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 22 July 2025 Added style to enlarge fonts on Tooltips but currently unable to change tooltip width */&lt;br /&gt;
&lt;br /&gt;
.mw-lingo-definition-text { font-size:125%; } /* Tooltip is also styled as a qtip in jquery.qtip.css */&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 20 July 2025 Fluid Typography and Font Variables */&lt;br /&gt;
/* Copied from mh370wiki.net and adapted for use here */&lt;br /&gt;
&lt;br /&gt;
/* Fluid Typography  - see Responsive And Fluid Typography With vh And vw Units&lt;br /&gt;
https://www.smashingmagazine.com/2016/05/fluid-typography/ &lt;br /&gt;
Unlike responsive typography, which changes only at set breakpoints,&lt;br /&gt;
fluid typography resizes smoothly to match any device width.&lt;br /&gt;
*/&lt;br /&gt;
/* Variables for font size ( to be used in Vector.css ) see https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
&lt;br /&gt;
/*   Clamp() for min, preferred, max font size see https://developer.mozilla.org/en-US/docs/Web/CSS/clamp() */&lt;br /&gt;
/* Notes on font sizes&lt;br /&gt;
The default text size in browsers is 16px. So, the default size of 1em is 16px.&lt;br /&gt;
rem (root em) references the base font size of the document.&lt;br /&gt;
Assuming that the base font size is 16px, we get the following values:&lt;br /&gt;
1rem = 16px&lt;br /&gt;
1.5rem = 24px&lt;br /&gt;
0.5rem = 8px&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/* Use clamp ( min preferred max ) */&lt;br /&gt;
:root { font-size: clamp( 1vw, 1.05rem, 1.2vw ); } &lt;br /&gt;
&lt;br /&gt;
/* Font sizes using variables from https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
/* Example   font-size: var(--font-size-100);   */&lt;br /&gt;
:root { --font-size-625: 62.5%;  /* 62.5% of root font size */&lt;br /&gt;
        --font-size-875: 87.5%;  /* 87.5% x root font size  */&lt;br /&gt;
        --font-size-090: 90%;    /* 90% x root font size    */&lt;br /&gt;
        --font-size-095: 95%;    /* 95% x root font size    */&lt;br /&gt;
        --font-size-100: 100%;   /* 100% = root font size   */&lt;br /&gt;
        --font-size-105: 105%;   /* 105% x root font size   */&lt;br /&gt;
        --font-size-110: 110%;   /* 110% x root font size   */&lt;br /&gt;
        --font-size-115: 115%;   /* 115% x root font size   */&lt;br /&gt;
        --font-size-120: 120%;   /* 120% x root font size   */        &lt;br /&gt;
        --font-size-125: 125%;   /* 125% x root font size   */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text Styles using Font Variables             */&lt;br /&gt;
&lt;br /&gt;
/* Font Sizes */&lt;br /&gt;
body { font-size: var(--font-size-100); }&lt;br /&gt;
p { font-size: var(--font-size-100); }&lt;br /&gt;
dl dt dd { font-size: var(--font-size-100); }&lt;br /&gt;
dd { margin-bottom: 1em; } /* added 11 Oct 2022 to space between a dd and the next dt */&lt;br /&gt;
/* ul ol li { font-size: var(--font-size-100); } */&lt;br /&gt;
&lt;br /&gt;
/* Headings are sized by percentage over the base font and also resize based on viewport width */&lt;br /&gt;
h1 {font-size: var(--font-size-125);}   	&lt;br /&gt;
h2 {font-size: var(--font-size-120);}   /* h2 was previously not defined */&lt;br /&gt;
h3 {font-size: var(--font-size-115);}&lt;br /&gt;
h4 {font-size: var(--font-size-110);}&lt;br /&gt;
h5 {font-size: var(--font-size-105);}&lt;br /&gt;
/* h6 {font-size: var(--font-size-100);} modified 4 Jan 2025 */&lt;br /&gt;
h6 {font-size: var(--font-size-090);}&lt;br /&gt;
&lt;br /&gt;
h1, h3, h4, h5, h6 {&lt;br /&gt;
	font-family: Arial, Helvetica, sans-serif;&lt;br /&gt;
	color: var(--clr-DeepPurple-base-30); &lt;br /&gt;
	font-weight: 600;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text layout using padding - use vw for responsive */&lt;br /&gt;
/* 10px = 0.625rem; 20px = 1.25rem; 30px = 1.875rem; 40px = 2.5rem; */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
h5 { padding-left: 0.5vw; } &lt;br /&gt;
h6 { padding-left: 0.5vw; } &lt;br /&gt;
p  { padding-left: 1vw; padding-right:1vw; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* ordered list ol and altered padding for a nested list */&lt;br /&gt;
ol { display:block; position:relative; left:0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; padding-right:0.9vw; &lt;br /&gt;
     &amp;amp; ol { display:block; position:relative; left:-0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; list-style-type:lower-roman; }&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
/* Definition List */&lt;br /&gt;
dl { padding-left: 2.5vw; padding-right:2.5vw; } &lt;br /&gt;
dt { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
dd { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* 11 July 2025 Rows and Columns     */&lt;br /&gt;
&lt;br /&gt;
/* 26 July 2020 New row/column layout */&lt;br /&gt;
/* July 2025 Copied from www.mh370wiki.net ( with minor adjustments ) */&lt;br /&gt;
.Row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.column-left { display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-right: 1em; }&lt;br /&gt;
.column-center {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; margin-left: 1em; margin-right: 1em; }&lt;br /&gt;
.column-right {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-left: 1em; }&lt;br /&gt;
	&lt;br /&gt;
/* flex-basis determines column width */	&lt;br /&gt;
.col-width-75 { flex-basis: 75%; flex-shrink: 15;} /* usually main column 75% and Comments or Notes 25% */&lt;br /&gt;
.col-width-70 { flex-basis: 65%; flex-shrink: 13;} /* added 28 Oct 2020 to use with col-width-30 even though that is actually 33% */&lt;br /&gt;
.col-width-60 { flex-basis: 60%; flex-shrink: 12;} /* two columns in ratio 3:2 */&lt;br /&gt;
.col-width-50 { flex-basis: 50%; flex-shrink: 10;} /* two equal columns */&lt;br /&gt;
.col-width-40 { flex-basis: 40%; flex-shrink: 8;} &lt;br /&gt;
/*.col-width-30 { flex-basis: 33%; flex-shrink: 7;}  */&lt;br /&gt;
/* .col-width-30 { flex: 1 1 0;} /* 16 Nov 2020 If columns are equal then flex should be 1 1 0 */&lt;br /&gt;
.col-width-30 { flex-basis: 0; }&lt;br /&gt;
.col-width-25 { flex-basis: 25%; flex-shrink: 5;} /* usually right column  */&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1813</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1813"/>
		<updated>2025-08-21T08:58:56Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* #ca-nstab-snippets { display:none !important; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 5 August 2025 Added Colors for use in Sidebar and MediaWiki interface */&lt;br /&gt;
&lt;br /&gt;
/* Steel Blue */&lt;br /&gt;
:root { --SteelBlue-80: #B6CEE2;&lt;br /&gt;
        --SteelBlue-70: #91B6D4;&lt;br /&gt;
        --SteelBlue-60: #6C9DC6;&lt;br /&gt;
        --SteelBlue-50: #4785B8;&lt;br /&gt;
        --SteelBlue-40: #396A93;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tan */&lt;br /&gt;
:root { --Tan-90: #F1E7DA;&lt;br /&gt;
        --Tan-80: #E2CFB6;&lt;br /&gt;
        --Tan-70: #D4B791;&lt;br /&gt;
        --Tan-60: #C69F6C;&lt;br /&gt;
        --Tan-50: #B88747;&lt;br /&gt;
        --Tan-40: #936C39;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* Items sorted with lightest color shade first, approximating a Z order */&lt;br /&gt;
&lt;br /&gt;
#mw-head { background-color: var(--SteelBlue-80); } /* full width at top of screen, behind logo */&lt;br /&gt;
&lt;br /&gt;
/* mw-body-content is in front of mw-body */&lt;br /&gt;
.mw-body-content { background-color: #F2F2F2; border-radius: 1em; padding-top:2em; padding-bottom:2em; padding-left:2.5em; padding-right:2.5em; } &lt;br /&gt;
&lt;br /&gt;
.mw-body { background-color: var(--SteelBlue-70); } /* is background for everything below header and right of left panel and down to footer */&lt;br /&gt;
&lt;br /&gt;
.mw-footer { background-color: var(--SteelBlue-60); } /* does not extend to bottom of the screen */&lt;br /&gt;
&lt;br /&gt;
#mw-panel.vector-legacy-sidebar.collapsible-nav { background-color: var(--SteelBlue-50); } /* background for menu but extends to top of screen and behind logo and in front of header */&lt;br /&gt;
&lt;br /&gt;
body { background-color: var(--SteelBlue-40); } /* everything below mw-head, full width of screen, to bottom of screen */&lt;br /&gt;
&lt;br /&gt;
.catlinks { background-color: #bdccdb; } /* border on category row */&lt;br /&gt;
.mw-normal-catlinks { background-color: #ced8e4; padding-left:20px; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 2 August added class to standardised margins when displaying a category tree */&lt;br /&gt;
.displayCatTree { margin-left:4em; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 1 August 2025 Added a class to standardise page headers, plus a variant for category pages */&lt;br /&gt;
&lt;br /&gt;
.header { width:90%; &lt;br /&gt;
          margin-left:auto; margin-right:auto; margin-bottom:1em; padding-top:10px; padding-bottom:10px; &lt;br /&gt;
          text-align:justify;&lt;br /&gt;
          background-color: #cce6ff; border-color: #cce6ff; border-radius: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.cat { background-color: #e8f2fc; border-color: #e8f2fc; } /* pale shade of blue for header on category pages */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 attempt to indent unordered lists */&lt;br /&gt;
.mw-body-content ul { display:block; position:relative; left:1em; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } /* mw-body-content limits scope */&lt;br /&gt;
/* .ulNormal  { display:block; position:relative; left:2vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 added style for quoted text, adapted from mh370wiki.net, used instead of blockquote */&lt;br /&gt;
&lt;br /&gt;
.quote { width: 90%; background: #FAFAFA;    /* contrast against white page background */&lt;br /&gt;
         padding-left: 1em;; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em;  /* was px  */&lt;br /&gt;
         margin-left:auto; margin-right:auto; margin-top:0.5em; margin-bottom:0.5em;  &lt;br /&gt;
         text-align:justify; color: #000000;     /* black */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 27 July 2025 added left margin to images */&lt;br /&gt;
.mw-default-size { margin-left: 2em; } /* this is the container. applies to all images */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 25 July 2025 added style to indent &amp;lt;pre&amp;gt; Note: No dot required before pre */&lt;br /&gt;
&lt;br /&gt;
pre { width: 90%; margin-left: auto; margin-right: auto; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 22 July 2025 Added style to enlarge fonts on Tooltips but currently unable to change tooltip width */&lt;br /&gt;
&lt;br /&gt;
.mw-lingo-definition-text { font-size:125%; } /* Tooltip is also styled as a qtip in jquery.qtip.css */&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 20 July 2025 Fluid Typography and Font Variables */&lt;br /&gt;
/* Copied from mh370wiki.net and adapted for use here */&lt;br /&gt;
&lt;br /&gt;
/* Fluid Typography  - see Responsive And Fluid Typography With vh And vw Units&lt;br /&gt;
https://www.smashingmagazine.com/2016/05/fluid-typography/ &lt;br /&gt;
Unlike responsive typography, which changes only at set breakpoints,&lt;br /&gt;
fluid typography resizes smoothly to match any device width.&lt;br /&gt;
*/&lt;br /&gt;
/* Variables for font size ( to be used in Vector.css ) see https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
&lt;br /&gt;
/*   Clamp() for min, preferred, max font size see https://developer.mozilla.org/en-US/docs/Web/CSS/clamp() */&lt;br /&gt;
/* Notes on font sizes&lt;br /&gt;
The default text size in browsers is 16px. So, the default size of 1em is 16px.&lt;br /&gt;
rem (root em) references the base font size of the document.&lt;br /&gt;
Assuming that the base font size is 16px, we get the following values:&lt;br /&gt;
1rem = 16px&lt;br /&gt;
1.5rem = 24px&lt;br /&gt;
0.5rem = 8px&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/* Use clamp ( min preferred max ) */&lt;br /&gt;
:root { font-size: clamp( 1vw, 1.05rem, 1.2vw ); } &lt;br /&gt;
&lt;br /&gt;
/* Font sizes using variables from https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
/* Example   font-size: var(--font-size-100);   */&lt;br /&gt;
:root { --font-size-625: 62.5%;  /* 62.5% of root font size */&lt;br /&gt;
        --font-size-875: 87.5%;  /* 87.5% x root font size  */&lt;br /&gt;
        --font-size-090: 90%;    /* 90% x root font size    */&lt;br /&gt;
        --font-size-095: 95%;    /* 95% x root font size    */&lt;br /&gt;
        --font-size-100: 100%;   /* 100% = root font size   */&lt;br /&gt;
        --font-size-105: 105%;   /* 105% x root font size   */&lt;br /&gt;
        --font-size-110: 110%;   /* 110% x root font size   */&lt;br /&gt;
        --font-size-115: 115%;   /* 115% x root font size   */&lt;br /&gt;
        --font-size-120: 120%;   /* 120% x root font size   */        &lt;br /&gt;
        --font-size-125: 125%;   /* 125% x root font size   */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text Styles using Font Variables             */&lt;br /&gt;
&lt;br /&gt;
/* Font Sizes */&lt;br /&gt;
body { font-size: var(--font-size-100); }&lt;br /&gt;
p { font-size: var(--font-size-100); }&lt;br /&gt;
dl dt dd { font-size: var(--font-size-100); }&lt;br /&gt;
dd { margin-bottom: 1em; } /* added 11 Oct 2022 to space between a dd and the next dt */&lt;br /&gt;
/* ul ol li { font-size: var(--font-size-100); } */&lt;br /&gt;
&lt;br /&gt;
/* Headings are sized by percentage over the base font and also resize based on viewport width */&lt;br /&gt;
h1 {font-size: var(--font-size-125);}   	&lt;br /&gt;
h2 {font-size: var(--font-size-120);}   /* h2 was previously not defined */&lt;br /&gt;
h3 {font-size: var(--font-size-115);}&lt;br /&gt;
h4 {font-size: var(--font-size-110);}&lt;br /&gt;
h5 {font-size: var(--font-size-105);}&lt;br /&gt;
/* h6 {font-size: var(--font-size-100);} modified 4 Jan 2025 */&lt;br /&gt;
h6 {font-size: var(--font-size-090);}&lt;br /&gt;
&lt;br /&gt;
h1, h3, h4, h5, h6 {&lt;br /&gt;
	font-family: Arial, Helvetica, sans-serif;&lt;br /&gt;
	color: var(--clr-DeepPurple-base-30); &lt;br /&gt;
	font-weight: 600;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text layout using padding - use vw for responsive */&lt;br /&gt;
/* 10px = 0.625rem; 20px = 1.25rem; 30px = 1.875rem; 40px = 2.5rem; */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
h5 { padding-left: 0.5vw; } &lt;br /&gt;
h6 { padding-left: 0.5vw; } &lt;br /&gt;
p  { padding-left: 1vw; padding-right:1vw; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* ordered list ol and altered padding for a nested list */&lt;br /&gt;
ol { display:block; position:relative; left:0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; padding-right:0.9vw; &lt;br /&gt;
     &amp;amp; ol { display:block; position:relative; left:-0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; list-style-type:lower-roman; }&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
/* Definition List */&lt;br /&gt;
dl { padding-left: 2.5vw; padding-right:2.5vw; } &lt;br /&gt;
dt { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
dd { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* 11 July 2025 Rows and Columns     */&lt;br /&gt;
&lt;br /&gt;
/* 26 July 2020 New row/column layout */&lt;br /&gt;
/* July 2025 Copied from www.mh370wiki.net ( with minor adjustments ) */&lt;br /&gt;
.Row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.column-left { display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-right: 1em; }&lt;br /&gt;
.column-center {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; margin-left: 1em; margin-right: 1em; }&lt;br /&gt;
.column-right {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-left: 1em; }&lt;br /&gt;
	&lt;br /&gt;
/* flex-basis determines column width */	&lt;br /&gt;
.col-width-75 { flex-basis: 75%; flex-shrink: 15;} /* usually main column 75% and Comments or Notes 25% */&lt;br /&gt;
.col-width-70 { flex-basis: 65%; flex-shrink: 13;} /* added 28 Oct 2020 to use with col-width-30 even though that is actually 33% */&lt;br /&gt;
.col-width-60 { flex-basis: 60%; flex-shrink: 12;} /* two columns in ratio 3:2 */&lt;br /&gt;
.col-width-50 { flex-basis: 50%; flex-shrink: 10;} /* two equal columns */&lt;br /&gt;
.col-width-40 { flex-basis: 40%; flex-shrink: 8;} &lt;br /&gt;
/*.col-width-30 { flex-basis: 33%; flex-shrink: 7;}  */&lt;br /&gt;
/* .col-width-30 { flex: 1 1 0;} /* 16 Nov 2020 If columns are equal then flex should be 1 1 0 */&lt;br /&gt;
.col-width-30 { flex-basis: 0; }&lt;br /&gt;
.col-width-25 { flex-basis: 25%; flex-shrink: 5;} /* usually right column  */&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1812</id>
		<title>Tab Removal</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1812"/>
		<updated>2025-08-21T08:58:38Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PageHeader}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;On the {{MH370Site}} website I wanted no Tabs. I wanted the page head to be uncluttered. And I did not want to open discussion pages (Talk) or allow the page source to be viewed. I just wanted it to look clean and simple.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Tab removal was achieved by adding the following to Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-main { display:none !important; }  /* Page tab */&lt;br /&gt;
#ca-talk { display: none !important; }       /* Discussion Tab */&lt;br /&gt;
#ca-history { display: none !important;}     /* View History / History Tab */&lt;br /&gt;
#ca-viewsource { display: none !important; } /* Users without Edit permission could still view the page source */&lt;br /&gt;
#ca-view { display:none!important; }         /* Read Tab (Vector Skin) */&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Edit tab is available to a logged-in user. And &#039;More&#039; opens the dropdown menu for Delete, Move and Protect. But these are not visible to the anonymous users.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;ca-nstab&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;In the Main namespace the first Tab is labelled &amp;lt;i&amp;gt;Page&amp;lt;/i&amp;gt;.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:MainPageTab.jpg|alt=Page Tab|Page Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt; The label can be changed - see &amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Snippets/Main_Page_tab&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Snippets/Main Page tab&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;. In Wikipedia the &#039;Page&#039; Tab is labelled &#039;Article&#039;.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Also, in Wikipedia, a mouse-over the Article Tab reveals a message &#039;View the content page [alt-shift-c]&#039;. This keyboard shortcut is supposed to make it easy for users to quickly switch between the Content and other views of the page, like Discussion (or talk). Wouldn&#039;t it be simpler to just click on the Tab? But in the background is a set of Access Keys with functionality modelled on the HTML accesskey attribute. Browsers typically use Alt + Accesskey, or Alt +Shift + Accesskey. In MediaWiki the Accesskey can be defined by creating a page in the MediaWiki Namespace, for example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MediaWiki:Accesskey-ca-nstab-main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Add a single letter in this page, a c perhaps, and that will become the keyboard shortcut (with alt + shift) to switch the page view to the article or content.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The components of the page name are &amp;lt;i&amp;gt;Accesskey&amp;lt;/i&amp;gt;, then the prefix &amp;lt;i&amp;gt;ca-nstab&amp;lt;/i&amp;gt;, then &amp;lt;i&amp;gt;main&amp;lt;/i&amp;gt;. This defines the accesskey for the Main namespace only.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;However, a more common requirement may be to remove the &#039;Page&#039; tab completely. This is simple by adding the line &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; to MediaWiki:Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So, to remove the Tab which relates to a namespace, and using the format of the working example &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; it should be possible to remove the Tab associated with other namespaces by adding a simplar line to MediaWiki:Common.css. For example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-&amp;lt;i&amp;gt;namespace_name&amp;lt;/i&amp;gt; { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This website has a public namespace called Snippets. Here is the associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NstabSnippets.jpg|alt=Namespace Tab for Snippets namespace|Namespace Tab for Snippets namespace]]&lt;br /&gt;
&amp;lt;p&amp;gt;Now this line has been added to MediaWiki:Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-snippets { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; And here is the result - A page name has been included with the namespace prefix Snippets: to show that the article is in that namespace, but there is no associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SnippetsNoTab.jpg|alt=Page in Snippets namespace without a Tab|Page in Snippets namespace without a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;Can the namespace be identified by Number instead of Name?&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Snippets namespace was defined like this - &amp;lt;code&amp;gt;define(&amp;quot;NS_SNIPPETS&amp;quot;, 3400);&amp;lt;/code&amp;gt; so the line in MediaWiki:Common.css was changed to this:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-3400 { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Namespace Tabs&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;There are several namespaces which hold public content. Two namespaces had unfriendly names:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Namespace name appeared in a Tab but hadn&#039;t bothered me until now.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015inTab.jpg|alt=Namespace FI_2015 in a Tab|Namespace FI_2015 in a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;To make the displayed names more friendly I changed the name of each namespace to a descriptive title and retained the original name as the alias. This is quite safe - the namespace Number is critical and changing it effectively causes all the content to be lost and a new empty namespace to be created. So don&#039;t do that!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The new namespace names are:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information (2015) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report (2018) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But now the page head looks like this:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;And&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Removing the Tab with the Namesace Name&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The page source, shown by Firefox Web developer Tools, contains the various classes, including the id ca-nstab-safety_investigation_report_(2018). A similar id is generated for the Factual Information (2015).&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:LeftNavCSS.jpg|alt=Page source showing Tab in Left Navigation Tab|Page source showing Tab in Left Navigation Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;My usual approach is to identify the relevant class and ID and simply add CSS to Common.css to effectively &#039;display:none&#039;. But that did not work for me. Even identifying the namespace by either name or number in combination with ids and classes in different combinations and sequences was not successful.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;h5&amp;gt;A Workaround&amp;lt;/h5&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;I won&#039;t offer the following as a solution, even though it works, because there is probably a better way. If I find a solution I will update this article.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Tab containing the Namespace name has a white background. I figure that one way to check if you have identified a target item is to change its colour.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is the CSS creating the white background:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NStabWhiteBackground.jpg|alt=Identifying the class by its white background|Identifying the class by its white background]]&lt;br /&gt;
&amp;lt;p&amp;gt;I added this to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { background:green; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:GreenTab.jpg|alt=Namespace tab with green background|Namespace tab with green background]]&lt;br /&gt;
&amp;lt;p&amp;gt;Bold colours prove the CSS is functional!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So now I have added this line to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { display: none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018NoTab.jpg|alt=Page Head with no Tab for namespace name|Page Head with no Tab for namespace name]]&lt;br /&gt;
&amp;lt;p&amp;gt;The applied CSS is captured here:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:WhiteTabNotDisplayed.jpg|alt=White namespace tab not displayed in page head|White namespace tab not displayed in page head]]&lt;br /&gt;
&amp;lt;p&amp;gt;As you can see, the tab still has a white background, but the display:none has finally been effective. It also works for all custom namespaces./p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Next Steps&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;I cannot believe that this is the correct way to remove these tabs. If/when I find a better way I will update this article. I can also predict that any upgrade to the version of MediaWiki and the Vector skin will require that this workaround be checked.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Links&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
   &amp;lt;dt&amp;gt;Manual:Removing tabs&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Hide page tabs &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;How to remove the top navigation page tabs in MediaWiki &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt; &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot; &amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1811</id>
		<title>Tab Removal</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1811"/>
		<updated>2025-08-21T08:53:33Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PageHeader}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;On the {{MH370Site}} website I wanted no Tabs. I wanted the page head to be uncluttered. And I did not want to open discussion pages (Talk) or allow the page source to be viewed. I just wanted it to look clean and simple.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Tab removal was achieved by adding the following to Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-main { display:none !important; }  /* Page tab */&lt;br /&gt;
#ca-talk { display: none !important; }       /* Discussion Tab */&lt;br /&gt;
#ca-history { display: none !important;}     /* View History / History Tab */&lt;br /&gt;
#ca-viewsource { display: none !important; } /* Users without Edit permission could still view the page source */&lt;br /&gt;
#ca-view { display:none!important; }         /* Read Tab (Vector Skin) */&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Edit tab is available to a logged-in user. And &#039;More&#039; opens the dropdown menu for Delete, Move and Protect. But these are not visible to the anonymous users.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;ca-nstab&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;In the Main namespace the first Tab is labelled &amp;lt;i&amp;gt;Page&amp;lt;/i&amp;gt;.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:MainPageTab.jpg|alt=Page Tab|Page Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt; The label can be changed - see &amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Snippets/Main_Page_tab&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Snippets/Main Page tab&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;. In Wikipedia the &#039;Page&#039; Tab is labelled &#039;Article&#039;.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Also, in Wikipedia, a mouse-over the Article Tab reveals a message &#039;View the content page [alt-shift-c]&#039;. This keyboard shortcut is supposed to make it easy for users to quickly switch between the Content and other views of the page, like Discussion (or talk). Wouldn&#039;t it be simpler to just click on the Tab? But in the background is a set of Access Keys with functionality modelled on the HTML accesskey attribute. Browsers typically use Alt + Accesskey, or Alt +Shift + Accesskey. In MediaWiki the Accesskey can be defined by creating a page in the MediaWiki Namespace, for example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MediaWiki:Accesskey-ca-nstab-main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Add a single letter in this page, a c perhaps, and that will become the keyboard shortcut (with alt + shift) to switch the page view to the article or content.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The components of the page name are &amp;lt;i&amp;gt;Accesskey&amp;lt;/i&amp;gt;, then the prefix &amp;lt;i&amp;gt;ca-nstab&amp;lt;/i&amp;gt;, then &amp;lt;i&amp;gt;main&amp;lt;/i&amp;gt;. This defines the accesskey for the Main namespace only.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;However, a more common requirement may be to remove the &#039;Page&#039; tab completely. This is simple by adding the line &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; to MediaWiki:Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So, to remove the Tab which relates to a namespace, and using the format of the working example &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; it should be possible to remove the Tab associated with other namespaces by adding a simplar line to MediaWiki:Common.css. For example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-&amp;lt;i&amp;gt;namespace_name&amp;lt;/i&amp;gt; { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This website has a public namespace called Snippets. Here is the associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NstabSnippets.jpg|alt=Namespace Tab for Snippets namespace|Namespace Tab for Snippets namespace]]&lt;br /&gt;
&amp;lt;p&amp;gt;Now this line has been added to MediaWiki:Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-snippets { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; And here is the result - A page name has been included with the namespace prefix Snippets: to show that the article is in that namespace, but there is no associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SnippetsNoTab.jpg|alt=Page in Snippets namespace without a Tab|Page in Snippets namespace without a Tab]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Namespace Tabs&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;There are several namespaces which hold public content. Two namespaces had unfriendly names:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Namespace name appeared in a Tab but hadn&#039;t bothered me until now.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015inTab.jpg|alt=Namespace FI_2015 in a Tab|Namespace FI_2015 in a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;To make the displayed names more friendly I changed the name of each namespace to a descriptive title and retained the original name as the alias. This is quite safe - the namespace Number is critical and changing it effectively causes all the content to be lost and a new empty namespace to be created. So don&#039;t do that!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The new namespace names are:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information (2015) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report (2018) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But now the page head looks like this:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;And&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Removing the Tab with the Namesace Name&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The page source, shown by Firefox Web developer Tools, contains the various classes, including the id ca-nstab-safety_investigation_report_(2018). A similar id is generated for the Factual Information (2015).&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:LeftNavCSS.jpg|alt=Page source showing Tab in Left Navigation Tab|Page source showing Tab in Left Navigation Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;My usual approach is to identify the relevant class and ID and simply add CSS to Common.css to effectively &#039;display:none&#039;. But that did not work for me. Even identifying the namespace by either name or number in combination with ids and classes in different combinations and sequences was not successful.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;h5&amp;gt;A Workaround&amp;lt;/h5&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;I won&#039;t offer the following as a solution, even though it works, because there is probably a better way. If I find a solution I will update this article.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Tab containing the Namespace name has a white background. I figure that one way to check if you have identified a target item is to change its colour.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is the CSS creating the white background:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NStabWhiteBackground.jpg|alt=Identifying the class by its white background|Identifying the class by its white background]]&lt;br /&gt;
&amp;lt;p&amp;gt;I added this to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { background:green; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:GreenTab.jpg|alt=Namespace tab with green background|Namespace tab with green background]]&lt;br /&gt;
&amp;lt;p&amp;gt;Bold colours prove the CSS is functional!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So now I have added this line to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { display: none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018NoTab.jpg|alt=Page Head with no Tab for namespace name|Page Head with no Tab for namespace name]]&lt;br /&gt;
&amp;lt;p&amp;gt;The applied CSS is captured here:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:WhiteTabNotDisplayed.jpg|alt=White namespace tab not displayed in page head|White namespace tab not displayed in page head]]&lt;br /&gt;
&amp;lt;p&amp;gt;As you can see, the tab still has a white background, but the display:none has finally been effective. It also works for all custom namespaces./p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Next Steps&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;I cannot believe that this is the correct way to remove these tabs. If/when I find a better way I will update this article. I can also predict that any upgrade to the version of MediaWiki and the Vector skin will require that this workaround be checked.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Links&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
   &amp;lt;dt&amp;gt;Manual:Removing tabs&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Hide page tabs &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;How to remove the top navigation page tabs in MediaWiki &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt; &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot; &amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=File:SnippetsNoTab.jpg&amp;diff=1810</id>
		<title>File:SnippetsNoTab.jpg</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=File:SnippetsNoTab.jpg&amp;diff=1810"/>
		<updated>2025-08-21T08:53:06Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Page in Snippets namespace without a Tab&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1809</id>
		<title>Tab Removal</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1809"/>
		<updated>2025-08-21T08:49:02Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PageHeader}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;On the {{MH370Site}} website I wanted no Tabs. I wanted the page head to be uncluttered. And I did not want to open discussion pages (Talk) or allow the page source to be viewed. I just wanted it to look clean and simple.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Tab removal was achieved by adding the following to Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-main { display:none !important; }  /* Page tab */&lt;br /&gt;
#ca-talk { display: none !important; }       /* Discussion Tab */&lt;br /&gt;
#ca-history { display: none !important;}     /* View History / History Tab */&lt;br /&gt;
#ca-viewsource { display: none !important; } /* Users without Edit permission could still view the page source */&lt;br /&gt;
#ca-view { display:none!important; }         /* Read Tab (Vector Skin) */&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Edit tab is available to a logged-in user. And &#039;More&#039; opens the dropdown menu for Delete, Move and Protect. But these are not visible to the anonymous users.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;ca-nstab&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;In the Main namespace the first Tab is labelled &amp;lt;i&amp;gt;Page&amp;lt;/i&amp;gt;.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:MainPageTab.jpg|alt=Page Tab|Page Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt; The label can be changed - see &amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Snippets/Main_Page_tab&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Snippets/Main Page tab&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;. In Wikipedia the &#039;Page&#039; Tab is labelled &#039;Article&#039;.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Also, in Wikipedia, a mouse-over the Article Tab reveals a message &#039;View the content page [alt-shift-c]&#039;. This keyboard shortcut is supposed to make it easy for users to quickly switch between the Content and other views of the page, like Discussion (or talk). Wouldn&#039;t it be simpler to just click on the Tab? But in the background is a set of Access Keys with functionality modelled on the HTML accesskey attribute. Browsers typically use Alt + Accesskey, or Alt +Shift + Accesskey. In MediaWiki the Accesskey can be defined by creating a page in the MediaWiki Namespace, for example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
MediaWiki:Accesskey-ca-nstab-main&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Add a single letter in this page, a c perhaps, and that will become the keyboard shortcut (with alt + shift) to switch the page view to the article or content.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The components of the page name are &amp;lt;i&amp;gt;Accesskey&amp;lt;/i&amp;gt;, then the prefix &amp;lt;i&amp;gt;ca-nstab&amp;lt;/i&amp;gt;, then &amp;lt;i&amp;gt;main&amp;lt;/i&amp;gt;. This defines the accesskey for the Main namespace only.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;However, a more common requirement may be to remove the &#039;Page&#039; tab completely. This is simple by adding the line &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; to MediaWiki:Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So, to remove the Tab which relates to a namespace, and using the format of the working example &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; it should be possible to remove the Tab associated with other namespaces by adding a simplar line to MediaWiki:Common.css. For example:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;code&amp;gt;#ca-nstab-&amp;lt;i&amp;gt;namespace_name&amp;lt;/i&amp;gt; { display:none !important; }&amp;lt;/code&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;This website has a public namespace called Snippets. Here is the associated namespace tab:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NstabSnippets.jpg|alt=Namespace Tab for Snippets namespace|Namespace Tab for Snippets namespace]]&lt;br /&gt;
&amp;lt;p&amp;gt;Now this line has been added to MediaWiki:Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-snippets { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp;&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Namespace Tabs&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;There are several namespaces which hold public content. Two namespaces had unfriendly names:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Namespace name appeared in a Tab but hadn&#039;t bothered me until now.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015inTab.jpg|alt=Namespace FI_2015 in a Tab|Namespace FI_2015 in a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;To make the displayed names more friendly I changed the name of each namespace to a descriptive title and retained the original name as the alias. This is quite safe - the namespace Number is critical and changing it effectively causes all the content to be lost and a new empty namespace to be created. So don&#039;t do that!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The new namespace names are:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information (2015) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report (2018) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But now the page head looks like this:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;And&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Removing the Tab with the Namesace Name&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The page source, shown by Firefox Web developer Tools, contains the various classes, including the id ca-nstab-safety_investigation_report_(2018). A similar id is generated for the Factual Information (2015).&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:LeftNavCSS.jpg|alt=Page source showing Tab in Left Navigation Tab|Page source showing Tab in Left Navigation Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;My usual approach is to identify the relevant class and ID and simply add CSS to Common.css to effectively &#039;display:none&#039;. But that did not work for me. Even identifying the namespace by either name or number in combination with ids and classes in different combinations and sequences was not successful.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;h5&amp;gt;A Workaround&amp;lt;/h5&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;I won&#039;t offer the following as a solution, even though it works, because there is probably a better way. If I find a solution I will update this article.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Tab containing the Namespace name has a white background. I figure that one way to check if you have identified a target item is to change its colour.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is the CSS creating the white background:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NStabWhiteBackground.jpg|alt=Identifying the class by its white background|Identifying the class by its white background]]&lt;br /&gt;
&amp;lt;p&amp;gt;I added this to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { background:green; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:GreenTab.jpg|alt=Namespace tab with green background|Namespace tab with green background]]&lt;br /&gt;
&amp;lt;p&amp;gt;Bold colours prove the CSS is functional!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So now I have added this line to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { display: none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018NoTab.jpg|alt=Page Head with no Tab for namespace name|Page Head with no Tab for namespace name]]&lt;br /&gt;
&amp;lt;p&amp;gt;The applied CSS is captured here:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:WhiteTabNotDisplayed.jpg|alt=White namespace tab not displayed in page head|White namespace tab not displayed in page head]]&lt;br /&gt;
&amp;lt;p&amp;gt;As you can see, the tab still has a white background, but the display:none has finally been effective. It also works for all custom namespaces./p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Next Steps&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;I cannot believe that this is the correct way to remove these tabs. If/when I find a better way I will update this article. I can also predict that any upgrade to the version of MediaWiki and the Vector skin will require that this workaround be checked.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Links&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
   &amp;lt;dt&amp;gt;Manual:Removing tabs&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Hide page tabs &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;How to remove the top navigation page tabs in MediaWiki &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt; &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot; &amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1808</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1808"/>
		<updated>2025-08-21T08:48:50Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#ca-nstab-snippets { display:none !important; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 5 August 2025 Added Colors for use in Sidebar and MediaWiki interface */&lt;br /&gt;
&lt;br /&gt;
/* Steel Blue */&lt;br /&gt;
:root { --SteelBlue-80: #B6CEE2;&lt;br /&gt;
        --SteelBlue-70: #91B6D4;&lt;br /&gt;
        --SteelBlue-60: #6C9DC6;&lt;br /&gt;
        --SteelBlue-50: #4785B8;&lt;br /&gt;
        --SteelBlue-40: #396A93;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tan */&lt;br /&gt;
:root { --Tan-90: #F1E7DA;&lt;br /&gt;
        --Tan-80: #E2CFB6;&lt;br /&gt;
        --Tan-70: #D4B791;&lt;br /&gt;
        --Tan-60: #C69F6C;&lt;br /&gt;
        --Tan-50: #B88747;&lt;br /&gt;
        --Tan-40: #936C39;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* Items sorted with lightest color shade first, approximating a Z order */&lt;br /&gt;
&lt;br /&gt;
#mw-head { background-color: var(--SteelBlue-80); } /* full width at top of screen, behind logo */&lt;br /&gt;
&lt;br /&gt;
/* mw-body-content is in front of mw-body */&lt;br /&gt;
.mw-body-content { background-color: #F2F2F2; border-radius: 1em; padding-top:2em; padding-bottom:2em; padding-left:2.5em; padding-right:2.5em; } &lt;br /&gt;
&lt;br /&gt;
.mw-body { background-color: var(--SteelBlue-70); } /* is background for everything below header and right of left panel and down to footer */&lt;br /&gt;
&lt;br /&gt;
.mw-footer { background-color: var(--SteelBlue-60); } /* does not extend to bottom of the screen */&lt;br /&gt;
&lt;br /&gt;
#mw-panel.vector-legacy-sidebar.collapsible-nav { background-color: var(--SteelBlue-50); } /* background for menu but extends to top of screen and behind logo and in front of header */&lt;br /&gt;
&lt;br /&gt;
body { background-color: var(--SteelBlue-40); } /* everything below mw-head, full width of screen, to bottom of screen */&lt;br /&gt;
&lt;br /&gt;
.catlinks { background-color: #bdccdb; } /* border on category row */&lt;br /&gt;
.mw-normal-catlinks { background-color: #ced8e4; padding-left:20px; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 2 August added class to standardised margins when displaying a category tree */&lt;br /&gt;
.displayCatTree { margin-left:4em; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 1 August 2025 Added a class to standardise page headers, plus a variant for category pages */&lt;br /&gt;
&lt;br /&gt;
.header { width:90%; &lt;br /&gt;
          margin-left:auto; margin-right:auto; margin-bottom:1em; padding-top:10px; padding-bottom:10px; &lt;br /&gt;
          text-align:justify;&lt;br /&gt;
          background-color: #cce6ff; border-color: #cce6ff; border-radius: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.cat { background-color: #e8f2fc; border-color: #e8f2fc; } /* pale shade of blue for header on category pages */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 attempt to indent unordered lists */&lt;br /&gt;
.mw-body-content ul { display:block; position:relative; left:1em; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } /* mw-body-content limits scope */&lt;br /&gt;
/* .ulNormal  { display:block; position:relative; left:2vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 added style for quoted text, adapted from mh370wiki.net, used instead of blockquote */&lt;br /&gt;
&lt;br /&gt;
.quote { width: 90%; background: #FAFAFA;    /* contrast against white page background */&lt;br /&gt;
         padding-left: 1em;; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em;  /* was px  */&lt;br /&gt;
         margin-left:auto; margin-right:auto; margin-top:0.5em; margin-bottom:0.5em;  &lt;br /&gt;
         text-align:justify; color: #000000;     /* black */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 27 July 2025 added left margin to images */&lt;br /&gt;
.mw-default-size { margin-left: 2em; } /* this is the container. applies to all images */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 25 July 2025 added style to indent &amp;lt;pre&amp;gt; Note: No dot required before pre */&lt;br /&gt;
&lt;br /&gt;
pre { width: 90%; margin-left: auto; margin-right: auto; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 22 July 2025 Added style to enlarge fonts on Tooltips but currently unable to change tooltip width */&lt;br /&gt;
&lt;br /&gt;
.mw-lingo-definition-text { font-size:125%; } /* Tooltip is also styled as a qtip in jquery.qtip.css */&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 20 July 2025 Fluid Typography and Font Variables */&lt;br /&gt;
/* Copied from mh370wiki.net and adapted for use here */&lt;br /&gt;
&lt;br /&gt;
/* Fluid Typography  - see Responsive And Fluid Typography With vh And vw Units&lt;br /&gt;
https://www.smashingmagazine.com/2016/05/fluid-typography/ &lt;br /&gt;
Unlike responsive typography, which changes only at set breakpoints,&lt;br /&gt;
fluid typography resizes smoothly to match any device width.&lt;br /&gt;
*/&lt;br /&gt;
/* Variables for font size ( to be used in Vector.css ) see https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
&lt;br /&gt;
/*   Clamp() for min, preferred, max font size see https://developer.mozilla.org/en-US/docs/Web/CSS/clamp() */&lt;br /&gt;
/* Notes on font sizes&lt;br /&gt;
The default text size in browsers is 16px. So, the default size of 1em is 16px.&lt;br /&gt;
rem (root em) references the base font size of the document.&lt;br /&gt;
Assuming that the base font size is 16px, we get the following values:&lt;br /&gt;
1rem = 16px&lt;br /&gt;
1.5rem = 24px&lt;br /&gt;
0.5rem = 8px&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/* Use clamp ( min preferred max ) */&lt;br /&gt;
:root { font-size: clamp( 1vw, 1.05rem, 1.2vw ); } &lt;br /&gt;
&lt;br /&gt;
/* Font sizes using variables from https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
/* Example   font-size: var(--font-size-100);   */&lt;br /&gt;
:root { --font-size-625: 62.5%;  /* 62.5% of root font size */&lt;br /&gt;
        --font-size-875: 87.5%;  /* 87.5% x root font size  */&lt;br /&gt;
        --font-size-090: 90%;    /* 90% x root font size    */&lt;br /&gt;
        --font-size-095: 95%;    /* 95% x root font size    */&lt;br /&gt;
        --font-size-100: 100%;   /* 100% = root font size   */&lt;br /&gt;
        --font-size-105: 105%;   /* 105% x root font size   */&lt;br /&gt;
        --font-size-110: 110%;   /* 110% x root font size   */&lt;br /&gt;
        --font-size-115: 115%;   /* 115% x root font size   */&lt;br /&gt;
        --font-size-120: 120%;   /* 120% x root font size   */        &lt;br /&gt;
        --font-size-125: 125%;   /* 125% x root font size   */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text Styles using Font Variables             */&lt;br /&gt;
&lt;br /&gt;
/* Font Sizes */&lt;br /&gt;
body { font-size: var(--font-size-100); }&lt;br /&gt;
p { font-size: var(--font-size-100); }&lt;br /&gt;
dl dt dd { font-size: var(--font-size-100); }&lt;br /&gt;
dd { margin-bottom: 1em; } /* added 11 Oct 2022 to space between a dd and the next dt */&lt;br /&gt;
/* ul ol li { font-size: var(--font-size-100); } */&lt;br /&gt;
&lt;br /&gt;
/* Headings are sized by percentage over the base font and also resize based on viewport width */&lt;br /&gt;
h1 {font-size: var(--font-size-125);}   	&lt;br /&gt;
h2 {font-size: var(--font-size-120);}   /* h2 was previously not defined */&lt;br /&gt;
h3 {font-size: var(--font-size-115);}&lt;br /&gt;
h4 {font-size: var(--font-size-110);}&lt;br /&gt;
h5 {font-size: var(--font-size-105);}&lt;br /&gt;
/* h6 {font-size: var(--font-size-100);} modified 4 Jan 2025 */&lt;br /&gt;
h6 {font-size: var(--font-size-090);}&lt;br /&gt;
&lt;br /&gt;
h1, h3, h4, h5, h6 {&lt;br /&gt;
	font-family: Arial, Helvetica, sans-serif;&lt;br /&gt;
	color: var(--clr-DeepPurple-base-30); &lt;br /&gt;
	font-weight: 600;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text layout using padding - use vw for responsive */&lt;br /&gt;
/* 10px = 0.625rem; 20px = 1.25rem; 30px = 1.875rem; 40px = 2.5rem; */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
h5 { padding-left: 0.5vw; } &lt;br /&gt;
h6 { padding-left: 0.5vw; } &lt;br /&gt;
p  { padding-left: 1vw; padding-right:1vw; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* ordered list ol and altered padding for a nested list */&lt;br /&gt;
ol { display:block; position:relative; left:0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; padding-right:0.9vw; &lt;br /&gt;
     &amp;amp; ol { display:block; position:relative; left:-0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; list-style-type:lower-roman; }&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
/* Definition List */&lt;br /&gt;
dl { padding-left: 2.5vw; padding-right:2.5vw; } &lt;br /&gt;
dt { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
dd { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* 11 July 2025 Rows and Columns     */&lt;br /&gt;
&lt;br /&gt;
/* 26 July 2020 New row/column layout */&lt;br /&gt;
/* July 2025 Copied from www.mh370wiki.net ( with minor adjustments ) */&lt;br /&gt;
.Row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.column-left { display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-right: 1em; }&lt;br /&gt;
.column-center {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; margin-left: 1em; margin-right: 1em; }&lt;br /&gt;
.column-right {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-left: 1em; }&lt;br /&gt;
	&lt;br /&gt;
/* flex-basis determines column width */	&lt;br /&gt;
.col-width-75 { flex-basis: 75%; flex-shrink: 15;} /* usually main column 75% and Comments or Notes 25% */&lt;br /&gt;
.col-width-70 { flex-basis: 65%; flex-shrink: 13;} /* added 28 Oct 2020 to use with col-width-30 even though that is actually 33% */&lt;br /&gt;
.col-width-60 { flex-basis: 60%; flex-shrink: 12;} /* two columns in ratio 3:2 */&lt;br /&gt;
.col-width-50 { flex-basis: 50%; flex-shrink: 10;} /* two equal columns */&lt;br /&gt;
.col-width-40 { flex-basis: 40%; flex-shrink: 8;} &lt;br /&gt;
/*.col-width-30 { flex-basis: 33%; flex-shrink: 7;}  */&lt;br /&gt;
/* .col-width-30 { flex: 1 1 0;} /* 16 Nov 2020 If columns are equal then flex should be 1 1 0 */&lt;br /&gt;
.col-width-30 { flex-basis: 0; }&lt;br /&gt;
.col-width-25 { flex-basis: 25%; flex-shrink: 5;} /* usually right column  */&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1807</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1807"/>
		<updated>2025-08-21T08:48:38Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#ca-nstab-snippets { display:none !important; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 5 August 2025 Added Colors for use in Sidebar and MediaWiki interface */&lt;br /&gt;
&lt;br /&gt;
/* Steel Blue */&lt;br /&gt;
:root { --SteelBlue-80: #B6CEE2;&lt;br /&gt;
        --SteelBlue-70: #91B6D4;&lt;br /&gt;
        --SteelBlue-60: #6C9DC6;&lt;br /&gt;
        --SteelBlue-50: #4785B8;&lt;br /&gt;
        --SteelBlue-40: #396A93;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tan */&lt;br /&gt;
:root { --Tan-90: #F1E7DA;&lt;br /&gt;
        --Tan-80: #E2CFB6;&lt;br /&gt;
        --Tan-70: #D4B791;&lt;br /&gt;
        --Tan-60: #C69F6C;&lt;br /&gt;
        --Tan-50: #B88747;&lt;br /&gt;
        --Tan-40: #936C39;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* Items sorted with lightest color shade first, approximating a Z order */&lt;br /&gt;
&lt;br /&gt;
#mw-head { background-color: var(--SteelBlue-80); } /* full width at top of screen, behind logo */&lt;br /&gt;
&lt;br /&gt;
/* mw-body-content is in front of mw-body */&lt;br /&gt;
.mw-body-content { background-color: #F2F2F2; border-radius: 1em; padding-top:2em; padding-bottom:2em; padding-left:2.5em; padding-right:2.5em; } &lt;br /&gt;
&lt;br /&gt;
.mw-body { background-color: var(--SteelBlue-70); } /* is background for everything below header and right of left panel and down to footer */&lt;br /&gt;
&lt;br /&gt;
.mw-footer { background-color: var(--SteelBlue-60); } /* does not extend to bottom of the screen */&lt;br /&gt;
&lt;br /&gt;
#mw-panel.vector-legacy-sidebar.collapsible-nav { background-color: var(--SteelBlue-50); } /* background for menu but extends to top of screen and behind logo and in front of header */&lt;br /&gt;
&lt;br /&gt;
body { background-color: var(--SteelBlue-40); } /* everything below mw-head, full width of screen, to bottom of screen */&lt;br /&gt;
&lt;br /&gt;
.catlinks { background-color: #bdccdb; } /* border on category row */&lt;br /&gt;
.mw-normal-catlinks { background-color: #ced8e4; padding-left:20px; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 2 August added class to standardised margins when displaying a category tree */&lt;br /&gt;
.displayCatTree { margin-left:4em; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 1 August 2025 Added a class to standardise page headers, plus a variant for category pages */&lt;br /&gt;
&lt;br /&gt;
.header { width:90%; &lt;br /&gt;
          margin-left:auto; margin-right:auto; margin-bottom:1em; padding-top:10px; padding-bottom:10px; &lt;br /&gt;
          text-align:justify;&lt;br /&gt;
          background-color: #cce6ff; border-color: #cce6ff; border-radius: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.cat { background-color: #e8f2fc; border-color: #e8f2fc; } /* pale shade of blue for header on category pages */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 attempt to indent unordered lists */&lt;br /&gt;
.mw-body-content ul { display:block; position:relative; left:1em; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } /* mw-body-content limits scope */&lt;br /&gt;
/* .ulNormal  { display:block; position:relative; left:2vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 added style for quoted text, adapted from mh370wiki.net, used instead of blockquote */&lt;br /&gt;
&lt;br /&gt;
.quote { width: 90%; background: #FAFAFA;    /* contrast against white page background */&lt;br /&gt;
         padding-left: 1em;; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em;  /* was px  */&lt;br /&gt;
         margin-left:auto; margin-right:auto; margin-top:0.5em; margin-bottom:0.5em;  &lt;br /&gt;
         text-align:justify; color: #000000;     /* black */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 27 July 2025 added left margin to images */&lt;br /&gt;
.mw-default-size { margin-left: 2em; } /* this is the container. applies to all images */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 25 July 2025 added style to indent &amp;lt;pre&amp;gt; Note: No dot required before pre */&lt;br /&gt;
&lt;br /&gt;
pre { width: 90%; margin-left: auto; margin-right: auto; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 22 July 2025 Added style to enlarge fonts on Tooltips but currently unable to change tooltip width */&lt;br /&gt;
&lt;br /&gt;
.mw-lingo-definition-text { font-size:125%; } /* Tooltip is also styled as a qtip in jquery.qtip.css */&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 20 July 2025 Fluid Typography and Font Variables */&lt;br /&gt;
/* Copied from mh370wiki.net and adapted for use here */&lt;br /&gt;
&lt;br /&gt;
/* Fluid Typography  - see Responsive And Fluid Typography With vh And vw Units&lt;br /&gt;
https://www.smashingmagazine.com/2016/05/fluid-typography/ &lt;br /&gt;
Unlike responsive typography, which changes only at set breakpoints,&lt;br /&gt;
fluid typography resizes smoothly to match any device width.&lt;br /&gt;
*/&lt;br /&gt;
/* Variables for font size ( to be used in Vector.css ) see https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
&lt;br /&gt;
/*   Clamp() for min, preferred, max font size see https://developer.mozilla.org/en-US/docs/Web/CSS/clamp() */&lt;br /&gt;
/* Notes on font sizes&lt;br /&gt;
The default text size in browsers is 16px. So, the default size of 1em is 16px.&lt;br /&gt;
rem (root em) references the base font size of the document.&lt;br /&gt;
Assuming that the base font size is 16px, we get the following values:&lt;br /&gt;
1rem = 16px&lt;br /&gt;
1.5rem = 24px&lt;br /&gt;
0.5rem = 8px&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/* Use clamp ( min preferred max ) */&lt;br /&gt;
:root { font-size: clamp( 1vw, 1.05rem, 1.2vw ); } &lt;br /&gt;
&lt;br /&gt;
/* Font sizes using variables from https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
/* Example   font-size: var(--font-size-100);   */&lt;br /&gt;
:root { --font-size-625: 62.5%;  /* 62.5% of root font size */&lt;br /&gt;
        --font-size-875: 87.5%;  /* 87.5% x root font size  */&lt;br /&gt;
        --font-size-090: 90%;    /* 90% x root font size    */&lt;br /&gt;
        --font-size-095: 95%;    /* 95% x root font size    */&lt;br /&gt;
        --font-size-100: 100%;   /* 100% = root font size   */&lt;br /&gt;
        --font-size-105: 105%;   /* 105% x root font size   */&lt;br /&gt;
        --font-size-110: 110%;   /* 110% x root font size   */&lt;br /&gt;
        --font-size-115: 115%;   /* 115% x root font size   */&lt;br /&gt;
        --font-size-120: 120%;   /* 120% x root font size   */        &lt;br /&gt;
        --font-size-125: 125%;   /* 125% x root font size   */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text Styles using Font Variables             */&lt;br /&gt;
&lt;br /&gt;
/* Font Sizes */&lt;br /&gt;
body { font-size: var(--font-size-100); }&lt;br /&gt;
p { font-size: var(--font-size-100); }&lt;br /&gt;
dl dt dd { font-size: var(--font-size-100); }&lt;br /&gt;
dd { margin-bottom: 1em; } /* added 11 Oct 2022 to space between a dd and the next dt */&lt;br /&gt;
/* ul ol li { font-size: var(--font-size-100); } */&lt;br /&gt;
&lt;br /&gt;
/* Headings are sized by percentage over the base font and also resize based on viewport width */&lt;br /&gt;
h1 {font-size: var(--font-size-125);}   	&lt;br /&gt;
h2 {font-size: var(--font-size-120);}   /* h2 was previously not defined */&lt;br /&gt;
h3 {font-size: var(--font-size-115);}&lt;br /&gt;
h4 {font-size: var(--font-size-110);}&lt;br /&gt;
h5 {font-size: var(--font-size-105);}&lt;br /&gt;
/* h6 {font-size: var(--font-size-100);} modified 4 Jan 2025 */&lt;br /&gt;
h6 {font-size: var(--font-size-090);}&lt;br /&gt;
&lt;br /&gt;
h1, h3, h4, h5, h6 {&lt;br /&gt;
	font-family: Arial, Helvetica, sans-serif;&lt;br /&gt;
	color: var(--clr-DeepPurple-base-30); &lt;br /&gt;
	font-weight: 600;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text layout using padding - use vw for responsive */&lt;br /&gt;
/* 10px = 0.625rem; 20px = 1.25rem; 30px = 1.875rem; 40px = 2.5rem; */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
h5 { padding-left: 0.5vw; } &lt;br /&gt;
h6 { padding-left: 0.5vw; } &lt;br /&gt;
p  { padding-left: 1vw; padding-right:1vw; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* ordered list ol and altered padding for a nested list */&lt;br /&gt;
ol { display:block; position:relative; left:0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; padding-right:0.9vw; &lt;br /&gt;
     &amp;amp; ol { display:block; position:relative; left:-0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; list-style-type:lower-roman; }&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
/* Definition List */&lt;br /&gt;
dl { padding-left: 2.5vw; padding-right:2.5vw; } &lt;br /&gt;
dt { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
dd { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* 11 July 2025 Rows and Columns     */&lt;br /&gt;
&lt;br /&gt;
/* 26 July 2020 New row/column layout */&lt;br /&gt;
/* July 2025 Copied from www.mh370wiki.net ( with minor adjustments ) */&lt;br /&gt;
.Row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.column-left { display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-right: 1em; }&lt;br /&gt;
.column-center {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; margin-left: 1em; margin-right: 1em; }&lt;br /&gt;
.column-right {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-left: 1em; }&lt;br /&gt;
	&lt;br /&gt;
/* flex-basis determines column width */	&lt;br /&gt;
.col-width-75 { flex-basis: 75%; flex-shrink: 15;} /* usually main column 75% and Comments or Notes 25% */&lt;br /&gt;
.col-width-70 { flex-basis: 65%; flex-shrink: 13;} /* added 28 Oct 2020 to use with col-width-30 even though that is actually 33% */&lt;br /&gt;
.col-width-60 { flex-basis: 60%; flex-shrink: 12;} /* two columns in ratio 3:2 */&lt;br /&gt;
.col-width-50 { flex-basis: 50%; flex-shrink: 10;} /* two equal columns */&lt;br /&gt;
.col-width-40 { flex-basis: 40%; flex-shrink: 8;} &lt;br /&gt;
/*.col-width-30 { flex-basis: 33%; flex-shrink: 7;}  */&lt;br /&gt;
/* .col-width-30 { flex: 1 1 0;} /* 16 Nov 2020 If columns are equal then flex should be 1 1 0 */&lt;br /&gt;
.col-width-30 { flex-basis: 0; }&lt;br /&gt;
.col-width-25 { flex-basis: 25%; flex-shrink: 5;} /* usually right column  */&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=File:NstabSnippets.jpg&amp;diff=1806</id>
		<title>File:NstabSnippets.jpg</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=File:NstabSnippets.jpg&amp;diff=1806"/>
		<updated>2025-08-21T08:47:08Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Namespace Tab for Snippets namespace&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1805</id>
		<title>Tab Removal</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1805"/>
		<updated>2025-08-21T08:21:45Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PageHeader}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;On the {{MH370Site}} website I wanted no Tabs. I wanted the page head to be uncluttered. And I did not want to open discussion pages (Talk) or allow the page source to be viewed. I just wanted it to look clean and simple.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Tab removal was achieved by adding the following to Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-main { display:none !important; }  /* Page tab */&lt;br /&gt;
#ca-talk { display: none !important; }       /* Discussion Tab */&lt;br /&gt;
#ca-history { display: none !important;}     /* View History / History Tab */&lt;br /&gt;
#ca-viewsource { display: none !important; } /* Users without Edit permission could still view the page source */&lt;br /&gt;
#ca-view { display:none!important; }         /* Read Tab (Vector Skin) */&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Edit tab is available to a logged-in user. And &#039;More&#039; opens the dropdown menu for Delete, Move and Protect. But these are not visible to the anonymous users.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;ca-nstab&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;In the Main namespace the first Tab is labelled &amp;lt;i&amp;gt;Page&amp;lt;/i&amp;gt;.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:MainPageTab.jpg|alt=Page Tab|Page Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt; The label can be changed - see &amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Snippets/Main_Page_tab&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Snippets/Main Page tab&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;However, a more common requirement may be to remove the &#039;Page&#039; tab completely. This is simple by adding the line &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; to MediaWiki:Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The &amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Namespace Tabs&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;There are several namespaces which hold public content. Two namespaces had unfriendly names:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Namespace name appeared in a Tab but hadn&#039;t bothered me until now.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015inTab.jpg|alt=Namespace FI_2015 in a Tab|Namespace FI_2015 in a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;To make the displayed names more friendly I changed the name of each namespace to a descriptive title and retained the original name as the alias. This is quite safe - the namespace Number is critical and changing it effectively causes all the content to be lost and a new empty namespace to be created. So don&#039;t do that!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The new namespace names are:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information (2015) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report (2018) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But now the page head looks like this:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;And&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Removing the Tab with the Namesace Name&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The page source, shown by Firefox Web developer Tools, contains the various classes, including the id ca-nstab-safety_investigation_report_(2018). A similar id is generated for the Factual Information (2015).&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:LeftNavCSS.jpg|alt=Page source showing Tab in Left Navigation Tab|Page source showing Tab in Left Navigation Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;My usual approach is to identify the relevant class and ID and simply add CSS to Common.css to effectively &#039;display:none&#039;. But that did not work for me. Even identifying the namespace by either name or number in combination with ids and classes in different combinations and sequences was not successful.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;h5&amp;gt;A Workaround&amp;lt;/h5&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;I won&#039;t offer the following as a solution, even though it works, because there is probably a better way. If I find a solution I will update this article.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Tab containing the Namespace name has a white background. I figure that one way to check if you have identified a target item is to change its colour.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is the CSS creating the white background:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NStabWhiteBackground.jpg|alt=Identifying the class by its white background|Identifying the class by its white background]]&lt;br /&gt;
&amp;lt;p&amp;gt;I added this to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { background:green; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:GreenTab.jpg|alt=Namespace tab with green background|Namespace tab with green background]]&lt;br /&gt;
&amp;lt;p&amp;gt;Bold colours prove the CSS is functional!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So now I have added this line to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { display: none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018NoTab.jpg|alt=Page Head with no Tab for namespace name|Page Head with no Tab for namespace name]]&lt;br /&gt;
&amp;lt;p&amp;gt;The applied CSS is captured here:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:WhiteTabNotDisplayed.jpg|alt=White namespace tab not displayed in page head|White namespace tab not displayed in page head]]&lt;br /&gt;
&amp;lt;p&amp;gt;As you can see, the tab still has a white background, but the display:none has finally been effective. It also works for all custom namespaces./p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Next Steps&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;I cannot believe that this is the correct way to remove these tabs. If/when I find a better way I will update this article. I can also predict that any upgrade to the version of MediaWiki and the Vector skin will require that this workaround be checked.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Links&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
   &amp;lt;dt&amp;gt;Manual:Removing tabs&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Hide page tabs &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;How to remove the top navigation page tabs in MediaWiki &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt; &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot; &amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Accesskey-ca-nstab-main&amp;diff=1804</id>
		<title>MediaWiki:Accesskey-ca-nstab-main</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Accesskey-ca-nstab-main&amp;diff=1804"/>
		<updated>2025-08-21T08:17:19Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;A&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Accesskey-ca-nstab-main&amp;diff=1803</id>
		<title>MediaWiki:Accesskey-ca-nstab-main</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Accesskey-ca-nstab-main&amp;diff=1803"/>
		<updated>2025-08-21T08:16:12Z</updated>

		<summary type="html">&lt;p&gt;Grant: Grant moved page MediaWiki:Ca-nstab-main to MediaWiki:Accesskey-ca-nstab-main without leaving a redirect&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;August&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Accesskey-ca-nstab-main&amp;diff=1802</id>
		<title>MediaWiki:Accesskey-ca-nstab-main</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Accesskey-ca-nstab-main&amp;diff=1802"/>
		<updated>2025-08-21T08:10:33Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;August&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Accesskey-ca-nstab-main&amp;diff=1801</id>
		<title>MediaWiki:Accesskey-ca-nstab-main</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Accesskey-ca-nstab-main&amp;diff=1801"/>
		<updated>2025-08-21T08:08:58Z</updated>

		<summary type="html">&lt;p&gt;Grant: Created page with &amp;quot;Main&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Main&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1800</id>
		<title>Tab Removal</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1800"/>
		<updated>2025-08-21T08:08:08Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PageHeader}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;On the {{MH370Site}} website I wanted no Tabs. I wanted the page head to be uncluttered. And I did not want to open discussion pages (Talk) or allow the page source to be viewed. I just wanted it to look clean and simple.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Tab removal was achieved by adding the following to Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-main { display:none !important; }  /* Page tab */&lt;br /&gt;
#ca-talk { display: none !important; }       /* Discussion Tab */&lt;br /&gt;
#ca-history { display: none !important;}     /* View History / History Tab */&lt;br /&gt;
#ca-viewsource { display: none !important; } /* Users without Edit permission could still view the page source */&lt;br /&gt;
#ca-view { display:none!important; }         /* Read Tab (Vector Skin) */&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Edit tab is available to a logged-in user. And &#039;More&#039; opens the dropdown menu for Delete, Move and Protect. But these are not visible to the anonymous users.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;ca-nstab-main&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;In the Main namespace the first Tab is labelled &amp;lt;i&amp;gt;Page&amp;lt;/i&amp;gt;.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:MainPageTab.jpg|alt=Page Tab|Page Tab]]&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt; The label can be changed - see &amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Snippets/Main_Page_tab&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;Snippets/Main Page tab&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;However, a more common requirement may be to remove the &#039;Page&#039; tab completely. This is simple by adding the line &amp;amp;emsp; &amp;lt;code&amp;gt;#ca-nstab-main { display:none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; to MediaWiki:Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The &amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Namespace Tabs&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;There are several namespaces which hold public content. Two namespaces had unfriendly names:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Namespace name appeared in a Tab but hadn&#039;t bothered me until now.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015inTab.jpg|alt=Namespace FI_2015 in a Tab|Namespace FI_2015 in a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;To make the displayed names more friendly I changed the name of each namespace to a descriptive title and retained the original name as the alias. This is quite safe - the namespace Number is critical and changing it effectively causes all the content to be lost and a new empty namespace to be created. So don&#039;t do that!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The new namespace names are:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information (2015) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report (2018) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But now the page head looks like this:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;And&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Removing the Tab with the Namesace Name&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The page source, shown by Firefox Web developer Tools, contains the various classes, including the id ca-nstab-safety_investigation_report_(2018). A similar id is generated for the Factual Information (2015).&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:LeftNavCSS.jpg|alt=Page source showing Tab in Left Navigation Tab|Page source showing Tab in Left Navigation Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;My usual approach is to identify the relevant class and ID and simply add CSS to Common.css to effectively &#039;display:none&#039;. But that did not work for me. Even identifying the namespace by either name or number in combination with ids and classes in different combinations and sequences was not successful.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;h5&amp;gt;A Workaround&amp;lt;/h5&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;I won&#039;t offer the following as a solution, even though it works, because there is probably a better way. If I find a solution I will update this article.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Tab containing the Namespace name has a white background. I figure that one way to check if you have identified a target item is to change its colour.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is the CSS creating the white background:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NStabWhiteBackground.jpg|alt=Identifying the class by its white background|Identifying the class by its white background]]&lt;br /&gt;
&amp;lt;p&amp;gt;I added this to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { background:green; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:GreenTab.jpg|alt=Namespace tab with green background|Namespace tab with green background]]&lt;br /&gt;
&amp;lt;p&amp;gt;Bold colours prove the CSS is functional!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So now I have added this line to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { display: none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018NoTab.jpg|alt=Page Head with no Tab for namespace name|Page Head with no Tab for namespace name]]&lt;br /&gt;
&amp;lt;p&amp;gt;The applied CSS is captured here:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:WhiteTabNotDisplayed.jpg|alt=White namespace tab not displayed in page head|White namespace tab not displayed in page head]]&lt;br /&gt;
&amp;lt;p&amp;gt;As you can see, the tab still has a white background, but the display:none has finally been effective. It also works for all custom namespaces./p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Next Steps&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;I cannot believe that this is the correct way to remove these tabs. If/when I find a better way I will update this article. I can also predict that any upgrade to the version of MediaWiki and the Vector skin will require that this workaround be checked.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Links&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
   &amp;lt;dt&amp;gt;Manual:Removing tabs&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Hide page tabs &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;How to remove the top navigation page tabs in MediaWiki &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt; &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot; &amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=File:MainPageTab.jpg&amp;diff=1799</id>
		<title>File:MainPageTab.jpg</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=File:MainPageTab.jpg&amp;diff=1799"/>
		<updated>2025-08-21T08:07:47Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Page Tab&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1798</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1798"/>
		<updated>2025-08-21T07:53:01Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* #ca-nstab-snippets { display:none !important; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 5 August 2025 Added Colors for use in Sidebar and MediaWiki interface */&lt;br /&gt;
&lt;br /&gt;
/* Steel Blue */&lt;br /&gt;
:root { --SteelBlue-80: #B6CEE2;&lt;br /&gt;
        --SteelBlue-70: #91B6D4;&lt;br /&gt;
        --SteelBlue-60: #6C9DC6;&lt;br /&gt;
        --SteelBlue-50: #4785B8;&lt;br /&gt;
        --SteelBlue-40: #396A93;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tan */&lt;br /&gt;
:root { --Tan-90: #F1E7DA;&lt;br /&gt;
        --Tan-80: #E2CFB6;&lt;br /&gt;
        --Tan-70: #D4B791;&lt;br /&gt;
        --Tan-60: #C69F6C;&lt;br /&gt;
        --Tan-50: #B88747;&lt;br /&gt;
        --Tan-40: #936C39;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* Items sorted with lightest color shade first, approximating a Z order */&lt;br /&gt;
&lt;br /&gt;
#mw-head { background-color: var(--SteelBlue-80); } /* full width at top of screen, behind logo */&lt;br /&gt;
&lt;br /&gt;
/* mw-body-content is in front of mw-body */&lt;br /&gt;
.mw-body-content { background-color: #F2F2F2; border-radius: 1em; padding-top:2em; padding-bottom:2em; padding-left:2.5em; padding-right:2.5em; } &lt;br /&gt;
&lt;br /&gt;
.mw-body { background-color: var(--SteelBlue-70); } /* is background for everything below header and right of left panel and down to footer */&lt;br /&gt;
&lt;br /&gt;
.mw-footer { background-color: var(--SteelBlue-60); } /* does not extend to bottom of the screen */&lt;br /&gt;
&lt;br /&gt;
#mw-panel.vector-legacy-sidebar.collapsible-nav { background-color: var(--SteelBlue-50); } /* background for menu but extends to top of screen and behind logo and in front of header */&lt;br /&gt;
&lt;br /&gt;
body { background-color: var(--SteelBlue-40); } /* everything below mw-head, full width of screen, to bottom of screen */&lt;br /&gt;
&lt;br /&gt;
.catlinks { background-color: #bdccdb; } /* border on category row */&lt;br /&gt;
.mw-normal-catlinks { background-color: #ced8e4; padding-left:20px; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 2 August added class to standardised margins when displaying a category tree */&lt;br /&gt;
.displayCatTree { margin-left:4em; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 1 August 2025 Added a class to standardise page headers, plus a variant for category pages */&lt;br /&gt;
&lt;br /&gt;
.header { width:90%; &lt;br /&gt;
          margin-left:auto; margin-right:auto; margin-bottom:1em; padding-top:10px; padding-bottom:10px; &lt;br /&gt;
          text-align:justify;&lt;br /&gt;
          background-color: #cce6ff; border-color: #cce6ff; border-radius: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.cat { background-color: #e8f2fc; border-color: #e8f2fc; } /* pale shade of blue for header on category pages */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 attempt to indent unordered lists */&lt;br /&gt;
.mw-body-content ul { display:block; position:relative; left:1em; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } /* mw-body-content limits scope */&lt;br /&gt;
/* .ulNormal  { display:block; position:relative; left:2vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 added style for quoted text, adapted from mh370wiki.net, used instead of blockquote */&lt;br /&gt;
&lt;br /&gt;
.quote { width: 90%; background: #FAFAFA;    /* contrast against white page background */&lt;br /&gt;
         padding-left: 1em;; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em;  /* was px  */&lt;br /&gt;
         margin-left:auto; margin-right:auto; margin-top:0.5em; margin-bottom:0.5em;  &lt;br /&gt;
         text-align:justify; color: #000000;     /* black */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 27 July 2025 added left margin to images */&lt;br /&gt;
.mw-default-size { margin-left: 2em; } /* this is the container. applies to all images */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 25 July 2025 added style to indent &amp;lt;pre&amp;gt; Note: No dot required before pre */&lt;br /&gt;
&lt;br /&gt;
pre { width: 90%; margin-left: auto; margin-right: auto; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 22 July 2025 Added style to enlarge fonts on Tooltips but currently unable to change tooltip width */&lt;br /&gt;
&lt;br /&gt;
.mw-lingo-definition-text { font-size:125%; } /* Tooltip is also styled as a qtip in jquery.qtip.css */&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 20 July 2025 Fluid Typography and Font Variables */&lt;br /&gt;
/* Copied from mh370wiki.net and adapted for use here */&lt;br /&gt;
&lt;br /&gt;
/* Fluid Typography  - see Responsive And Fluid Typography With vh And vw Units&lt;br /&gt;
https://www.smashingmagazine.com/2016/05/fluid-typography/ &lt;br /&gt;
Unlike responsive typography, which changes only at set breakpoints,&lt;br /&gt;
fluid typography resizes smoothly to match any device width.&lt;br /&gt;
*/&lt;br /&gt;
/* Variables for font size ( to be used in Vector.css ) see https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
&lt;br /&gt;
/*   Clamp() for min, preferred, max font size see https://developer.mozilla.org/en-US/docs/Web/CSS/clamp() */&lt;br /&gt;
/* Notes on font sizes&lt;br /&gt;
The default text size in browsers is 16px. So, the default size of 1em is 16px.&lt;br /&gt;
rem (root em) references the base font size of the document.&lt;br /&gt;
Assuming that the base font size is 16px, we get the following values:&lt;br /&gt;
1rem = 16px&lt;br /&gt;
1.5rem = 24px&lt;br /&gt;
0.5rem = 8px&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/* Use clamp ( min preferred max ) */&lt;br /&gt;
:root { font-size: clamp( 1vw, 1.05rem, 1.2vw ); } &lt;br /&gt;
&lt;br /&gt;
/* Font sizes using variables from https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
/* Example   font-size: var(--font-size-100);   */&lt;br /&gt;
:root { --font-size-625: 62.5%;  /* 62.5% of root font size */&lt;br /&gt;
        --font-size-875: 87.5%;  /* 87.5% x root font size  */&lt;br /&gt;
        --font-size-090: 90%;    /* 90% x root font size    */&lt;br /&gt;
        --font-size-095: 95%;    /* 95% x root font size    */&lt;br /&gt;
        --font-size-100: 100%;   /* 100% = root font size   */&lt;br /&gt;
        --font-size-105: 105%;   /* 105% x root font size   */&lt;br /&gt;
        --font-size-110: 110%;   /* 110% x root font size   */&lt;br /&gt;
        --font-size-115: 115%;   /* 115% x root font size   */&lt;br /&gt;
        --font-size-120: 120%;   /* 120% x root font size   */        &lt;br /&gt;
        --font-size-125: 125%;   /* 125% x root font size   */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text Styles using Font Variables             */&lt;br /&gt;
&lt;br /&gt;
/* Font Sizes */&lt;br /&gt;
body { font-size: var(--font-size-100); }&lt;br /&gt;
p { font-size: var(--font-size-100); }&lt;br /&gt;
dl dt dd { font-size: var(--font-size-100); }&lt;br /&gt;
dd { margin-bottom: 1em; } /* added 11 Oct 2022 to space between a dd and the next dt */&lt;br /&gt;
/* ul ol li { font-size: var(--font-size-100); } */&lt;br /&gt;
&lt;br /&gt;
/* Headings are sized by percentage over the base font and also resize based on viewport width */&lt;br /&gt;
h1 {font-size: var(--font-size-125);}   	&lt;br /&gt;
h2 {font-size: var(--font-size-120);}   /* h2 was previously not defined */&lt;br /&gt;
h3 {font-size: var(--font-size-115);}&lt;br /&gt;
h4 {font-size: var(--font-size-110);}&lt;br /&gt;
h5 {font-size: var(--font-size-105);}&lt;br /&gt;
/* h6 {font-size: var(--font-size-100);} modified 4 Jan 2025 */&lt;br /&gt;
h6 {font-size: var(--font-size-090);}&lt;br /&gt;
&lt;br /&gt;
h1, h3, h4, h5, h6 {&lt;br /&gt;
	font-family: Arial, Helvetica, sans-serif;&lt;br /&gt;
	color: var(--clr-DeepPurple-base-30); &lt;br /&gt;
	font-weight: 600;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text layout using padding - use vw for responsive */&lt;br /&gt;
/* 10px = 0.625rem; 20px = 1.25rem; 30px = 1.875rem; 40px = 2.5rem; */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
h5 { padding-left: 0.5vw; } &lt;br /&gt;
h6 { padding-left: 0.5vw; } &lt;br /&gt;
p  { padding-left: 1vw; padding-right:1vw; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* ordered list ol and altered padding for a nested list */&lt;br /&gt;
ol { display:block; position:relative; left:0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; padding-right:0.9vw; &lt;br /&gt;
     &amp;amp; ol { display:block; position:relative; left:-0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; list-style-type:lower-roman; }&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
/* Definition List */&lt;br /&gt;
dl { padding-left: 2.5vw; padding-right:2.5vw; } &lt;br /&gt;
dt { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
dd { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* 11 July 2025 Rows and Columns     */&lt;br /&gt;
&lt;br /&gt;
/* 26 July 2020 New row/column layout */&lt;br /&gt;
/* July 2025 Copied from www.mh370wiki.net ( with minor adjustments ) */&lt;br /&gt;
.Row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.column-left { display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-right: 1em; }&lt;br /&gt;
.column-center {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; margin-left: 1em; margin-right: 1em; }&lt;br /&gt;
.column-right {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-left: 1em; }&lt;br /&gt;
	&lt;br /&gt;
/* flex-basis determines column width */	&lt;br /&gt;
.col-width-75 { flex-basis: 75%; flex-shrink: 15;} /* usually main column 75% and Comments or Notes 25% */&lt;br /&gt;
.col-width-70 { flex-basis: 65%; flex-shrink: 13;} /* added 28 Oct 2020 to use with col-width-30 even though that is actually 33% */&lt;br /&gt;
.col-width-60 { flex-basis: 60%; flex-shrink: 12;} /* two columns in ratio 3:2 */&lt;br /&gt;
.col-width-50 { flex-basis: 50%; flex-shrink: 10;} /* two equal columns */&lt;br /&gt;
.col-width-40 { flex-basis: 40%; flex-shrink: 8;} &lt;br /&gt;
/*.col-width-30 { flex-basis: 33%; flex-shrink: 7;}  */&lt;br /&gt;
/* .col-width-30 { flex: 1 1 0;} /* 16 Nov 2020 If columns are equal then flex should be 1 1 0 */&lt;br /&gt;
.col-width-30 { flex-basis: 0; }&lt;br /&gt;
.col-width-25 { flex-basis: 25%; flex-shrink: 5;} /* usually right column  */&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1797</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1797"/>
		<updated>2025-08-21T07:51:04Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#ca-nstab-snippets { display:none !important; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 5 August 2025 Added Colors for use in Sidebar and MediaWiki interface */&lt;br /&gt;
&lt;br /&gt;
/* Steel Blue */&lt;br /&gt;
:root { --SteelBlue-80: #B6CEE2;&lt;br /&gt;
        --SteelBlue-70: #91B6D4;&lt;br /&gt;
        --SteelBlue-60: #6C9DC6;&lt;br /&gt;
        --SteelBlue-50: #4785B8;&lt;br /&gt;
        --SteelBlue-40: #396A93;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tan */&lt;br /&gt;
:root { --Tan-90: #F1E7DA;&lt;br /&gt;
        --Tan-80: #E2CFB6;&lt;br /&gt;
        --Tan-70: #D4B791;&lt;br /&gt;
        --Tan-60: #C69F6C;&lt;br /&gt;
        --Tan-50: #B88747;&lt;br /&gt;
        --Tan-40: #936C39;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* Items sorted with lightest color shade first, approximating a Z order */&lt;br /&gt;
&lt;br /&gt;
#mw-head { background-color: var(--SteelBlue-80); } /* full width at top of screen, behind logo */&lt;br /&gt;
&lt;br /&gt;
/* mw-body-content is in front of mw-body */&lt;br /&gt;
.mw-body-content { background-color: #F2F2F2; border-radius: 1em; padding-top:2em; padding-bottom:2em; padding-left:2.5em; padding-right:2.5em; } &lt;br /&gt;
&lt;br /&gt;
.mw-body { background-color: var(--SteelBlue-70); } /* is background for everything below header and right of left panel and down to footer */&lt;br /&gt;
&lt;br /&gt;
.mw-footer { background-color: var(--SteelBlue-60); } /* does not extend to bottom of the screen */&lt;br /&gt;
&lt;br /&gt;
#mw-panel.vector-legacy-sidebar.collapsible-nav { background-color: var(--SteelBlue-50); } /* background for menu but extends to top of screen and behind logo and in front of header */&lt;br /&gt;
&lt;br /&gt;
body { background-color: var(--SteelBlue-40); } /* everything below mw-head, full width of screen, to bottom of screen */&lt;br /&gt;
&lt;br /&gt;
.catlinks { background-color: #bdccdb; } /* border on category row */&lt;br /&gt;
.mw-normal-catlinks { background-color: #ced8e4; padding-left:20px; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 2 August added class to standardised margins when displaying a category tree */&lt;br /&gt;
.displayCatTree { margin-left:4em; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 1 August 2025 Added a class to standardise page headers, plus a variant for category pages */&lt;br /&gt;
&lt;br /&gt;
.header { width:90%; &lt;br /&gt;
          margin-left:auto; margin-right:auto; margin-bottom:1em; padding-top:10px; padding-bottom:10px; &lt;br /&gt;
          text-align:justify;&lt;br /&gt;
          background-color: #cce6ff; border-color: #cce6ff; border-radius: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.cat { background-color: #e8f2fc; border-color: #e8f2fc; } /* pale shade of blue for header on category pages */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 attempt to indent unordered lists */&lt;br /&gt;
.mw-body-content ul { display:block; position:relative; left:1em; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } /* mw-body-content limits scope */&lt;br /&gt;
/* .ulNormal  { display:block; position:relative; left:2vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 added style for quoted text, adapted from mh370wiki.net, used instead of blockquote */&lt;br /&gt;
&lt;br /&gt;
.quote { width: 90%; background: #FAFAFA;    /* contrast against white page background */&lt;br /&gt;
         padding-left: 1em;; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em;  /* was px  */&lt;br /&gt;
         margin-left:auto; margin-right:auto; margin-top:0.5em; margin-bottom:0.5em;  &lt;br /&gt;
         text-align:justify; color: #000000;     /* black */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 27 July 2025 added left margin to images */&lt;br /&gt;
.mw-default-size { margin-left: 2em; } /* this is the container. applies to all images */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 25 July 2025 added style to indent &amp;lt;pre&amp;gt; Note: No dot required before pre */&lt;br /&gt;
&lt;br /&gt;
pre { width: 90%; margin-left: auto; margin-right: auto; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 22 July 2025 Added style to enlarge fonts on Tooltips but currently unable to change tooltip width */&lt;br /&gt;
&lt;br /&gt;
.mw-lingo-definition-text { font-size:125%; } /* Tooltip is also styled as a qtip in jquery.qtip.css */&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 20 July 2025 Fluid Typography and Font Variables */&lt;br /&gt;
/* Copied from mh370wiki.net and adapted for use here */&lt;br /&gt;
&lt;br /&gt;
/* Fluid Typography  - see Responsive And Fluid Typography With vh And vw Units&lt;br /&gt;
https://www.smashingmagazine.com/2016/05/fluid-typography/ &lt;br /&gt;
Unlike responsive typography, which changes only at set breakpoints,&lt;br /&gt;
fluid typography resizes smoothly to match any device width.&lt;br /&gt;
*/&lt;br /&gt;
/* Variables for font size ( to be used in Vector.css ) see https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
&lt;br /&gt;
/*   Clamp() for min, preferred, max font size see https://developer.mozilla.org/en-US/docs/Web/CSS/clamp() */&lt;br /&gt;
/* Notes on font sizes&lt;br /&gt;
The default text size in browsers is 16px. So, the default size of 1em is 16px.&lt;br /&gt;
rem (root em) references the base font size of the document.&lt;br /&gt;
Assuming that the base font size is 16px, we get the following values:&lt;br /&gt;
1rem = 16px&lt;br /&gt;
1.5rem = 24px&lt;br /&gt;
0.5rem = 8px&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/* Use clamp ( min preferred max ) */&lt;br /&gt;
:root { font-size: clamp( 1vw, 1.05rem, 1.2vw ); } &lt;br /&gt;
&lt;br /&gt;
/* Font sizes using variables from https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
/* Example   font-size: var(--font-size-100);   */&lt;br /&gt;
:root { --font-size-625: 62.5%;  /* 62.5% of root font size */&lt;br /&gt;
        --font-size-875: 87.5%;  /* 87.5% x root font size  */&lt;br /&gt;
        --font-size-090: 90%;    /* 90% x root font size    */&lt;br /&gt;
        --font-size-095: 95%;    /* 95% x root font size    */&lt;br /&gt;
        --font-size-100: 100%;   /* 100% = root font size   */&lt;br /&gt;
        --font-size-105: 105%;   /* 105% x root font size   */&lt;br /&gt;
        --font-size-110: 110%;   /* 110% x root font size   */&lt;br /&gt;
        --font-size-115: 115%;   /* 115% x root font size   */&lt;br /&gt;
        --font-size-120: 120%;   /* 120% x root font size   */        &lt;br /&gt;
        --font-size-125: 125%;   /* 125% x root font size   */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text Styles using Font Variables             */&lt;br /&gt;
&lt;br /&gt;
/* Font Sizes */&lt;br /&gt;
body { font-size: var(--font-size-100); }&lt;br /&gt;
p { font-size: var(--font-size-100); }&lt;br /&gt;
dl dt dd { font-size: var(--font-size-100); }&lt;br /&gt;
dd { margin-bottom: 1em; } /* added 11 Oct 2022 to space between a dd and the next dt */&lt;br /&gt;
/* ul ol li { font-size: var(--font-size-100); } */&lt;br /&gt;
&lt;br /&gt;
/* Headings are sized by percentage over the base font and also resize based on viewport width */&lt;br /&gt;
h1 {font-size: var(--font-size-125);}   	&lt;br /&gt;
h2 {font-size: var(--font-size-120);}   /* h2 was previously not defined */&lt;br /&gt;
h3 {font-size: var(--font-size-115);}&lt;br /&gt;
h4 {font-size: var(--font-size-110);}&lt;br /&gt;
h5 {font-size: var(--font-size-105);}&lt;br /&gt;
/* h6 {font-size: var(--font-size-100);} modified 4 Jan 2025 */&lt;br /&gt;
h6 {font-size: var(--font-size-090);}&lt;br /&gt;
&lt;br /&gt;
h1, h3, h4, h5, h6 {&lt;br /&gt;
	font-family: Arial, Helvetica, sans-serif;&lt;br /&gt;
	color: var(--clr-DeepPurple-base-30); &lt;br /&gt;
	font-weight: 600;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text layout using padding - use vw for responsive */&lt;br /&gt;
/* 10px = 0.625rem; 20px = 1.25rem; 30px = 1.875rem; 40px = 2.5rem; */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
h5 { padding-left: 0.5vw; } &lt;br /&gt;
h6 { padding-left: 0.5vw; } &lt;br /&gt;
p  { padding-left: 1vw; padding-right:1vw; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* ordered list ol and altered padding for a nested list */&lt;br /&gt;
ol { display:block; position:relative; left:0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; padding-right:0.9vw; &lt;br /&gt;
     &amp;amp; ol { display:block; position:relative; left:-0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; list-style-type:lower-roman; }&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
/* Definition List */&lt;br /&gt;
dl { padding-left: 2.5vw; padding-right:2.5vw; } &lt;br /&gt;
dt { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
dd { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* 11 July 2025 Rows and Columns     */&lt;br /&gt;
&lt;br /&gt;
/* 26 July 2020 New row/column layout */&lt;br /&gt;
/* July 2025 Copied from www.mh370wiki.net ( with minor adjustments ) */&lt;br /&gt;
.Row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.column-left { display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-right: 1em; }&lt;br /&gt;
.column-center {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; margin-left: 1em; margin-right: 1em; }&lt;br /&gt;
.column-right {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-left: 1em; }&lt;br /&gt;
	&lt;br /&gt;
/* flex-basis determines column width */	&lt;br /&gt;
.col-width-75 { flex-basis: 75%; flex-shrink: 15;} /* usually main column 75% and Comments or Notes 25% */&lt;br /&gt;
.col-width-70 { flex-basis: 65%; flex-shrink: 13;} /* added 28 Oct 2020 to use with col-width-30 even though that is actually 33% */&lt;br /&gt;
.col-width-60 { flex-basis: 60%; flex-shrink: 12;} /* two columns in ratio 3:2 */&lt;br /&gt;
.col-width-50 { flex-basis: 50%; flex-shrink: 10;} /* two equal columns */&lt;br /&gt;
.col-width-40 { flex-basis: 40%; flex-shrink: 8;} &lt;br /&gt;
/*.col-width-30 { flex-basis: 33%; flex-shrink: 7;}  */&lt;br /&gt;
/* .col-width-30 { flex: 1 1 0;} /* 16 Nov 2020 If columns are equal then flex should be 1 1 0 */&lt;br /&gt;
.col-width-30 { flex-basis: 0; }&lt;br /&gt;
.col-width-25 { flex-basis: 25%; flex-shrink: 5;} /* usually right column  */&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1796</id>
		<title>MediaWiki:Common.css</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=MediaWiki:Common.css&amp;diff=1796"/>
		<updated>2025-08-21T07:49:35Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;/* CSS placed here will be applied to all skins */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
#ca-nstab-main { display:none !important; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 5 August 2025 Added Colors for use in Sidebar and MediaWiki interface */&lt;br /&gt;
&lt;br /&gt;
/* Steel Blue */&lt;br /&gt;
:root { --SteelBlue-80: #B6CEE2;&lt;br /&gt;
        --SteelBlue-70: #91B6D4;&lt;br /&gt;
        --SteelBlue-60: #6C9DC6;&lt;br /&gt;
        --SteelBlue-50: #4785B8;&lt;br /&gt;
        --SteelBlue-40: #396A93;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* Tan */&lt;br /&gt;
:root { --Tan-90: #F1E7DA;&lt;br /&gt;
        --Tan-80: #E2CFB6;&lt;br /&gt;
        --Tan-70: #D4B791;&lt;br /&gt;
        --Tan-60: #C69F6C;&lt;br /&gt;
        --Tan-50: #B88747;&lt;br /&gt;
        --Tan-40: #936C39;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* Items sorted with lightest color shade first, approximating a Z order */&lt;br /&gt;
&lt;br /&gt;
#mw-head { background-color: var(--SteelBlue-80); } /* full width at top of screen, behind logo */&lt;br /&gt;
&lt;br /&gt;
/* mw-body-content is in front of mw-body */&lt;br /&gt;
.mw-body-content { background-color: #F2F2F2; border-radius: 1em; padding-top:2em; padding-bottom:2em; padding-left:2.5em; padding-right:2.5em; } &lt;br /&gt;
&lt;br /&gt;
.mw-body { background-color: var(--SteelBlue-70); } /* is background for everything below header and right of left panel and down to footer */&lt;br /&gt;
&lt;br /&gt;
.mw-footer { background-color: var(--SteelBlue-60); } /* does not extend to bottom of the screen */&lt;br /&gt;
&lt;br /&gt;
#mw-panel.vector-legacy-sidebar.collapsible-nav { background-color: var(--SteelBlue-50); } /* background for menu but extends to top of screen and behind logo and in front of header */&lt;br /&gt;
&lt;br /&gt;
body { background-color: var(--SteelBlue-40); } /* everything below mw-head, full width of screen, to bottom of screen */&lt;br /&gt;
&lt;br /&gt;
.catlinks { background-color: #bdccdb; } /* border on category row */&lt;br /&gt;
.mw-normal-catlinks { background-color: #ced8e4; padding-left:20px; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 2 August added class to standardised margins when displaying a category tree */&lt;br /&gt;
.displayCatTree { margin-left:4em; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 1 August 2025 Added a class to standardise page headers, plus a variant for category pages */&lt;br /&gt;
&lt;br /&gt;
.header { width:90%; &lt;br /&gt;
          margin-left:auto; margin-right:auto; margin-bottom:1em; padding-top:10px; padding-bottom:10px; &lt;br /&gt;
          text-align:justify;&lt;br /&gt;
          background-color: #cce6ff; border-color: #cce6ff; border-radius: 10px;&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
.cat { background-color: #e8f2fc; border-color: #e8f2fc; } /* pale shade of blue for header on category pages */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 attempt to indent unordered lists */&lt;br /&gt;
.mw-body-content ul { display:block; position:relative; left:1em; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } /* mw-body-content limits scope */&lt;br /&gt;
/* .ulNormal  { display:block; position:relative; left:2vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; text-align:justify; } */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 28 July 2025 added style for quoted text, adapted from mh370wiki.net, used instead of blockquote */&lt;br /&gt;
&lt;br /&gt;
.quote { width: 90%; background: #FAFAFA;    /* contrast against white page background */&lt;br /&gt;
         padding-left: 1em;; padding-right: 1em; padding-top: 0.5em; padding-bottom: 0.5em;  /* was px  */&lt;br /&gt;
         margin-left:auto; margin-right:auto; margin-top:0.5em; margin-bottom:0.5em;  &lt;br /&gt;
         text-align:justify; color: #000000;     /* black */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 27 July 2025 added left margin to images */&lt;br /&gt;
.mw-default-size { margin-left: 2em; } /* this is the container. applies to all images */&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 25 July 2025 added style to indent &amp;lt;pre&amp;gt; Note: No dot required before pre */&lt;br /&gt;
&lt;br /&gt;
pre { width: 90%; margin-left: auto; margin-right: auto; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 22 July 2025 Added style to enlarge fonts on Tooltips but currently unable to change tooltip width */&lt;br /&gt;
&lt;br /&gt;
.mw-lingo-definition-text { font-size:125%; } /* Tooltip is also styled as a qtip in jquery.qtip.css */&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* 20 July 2025 Fluid Typography and Font Variables */&lt;br /&gt;
/* Copied from mh370wiki.net and adapted for use here */&lt;br /&gt;
&lt;br /&gt;
/* Fluid Typography  - see Responsive And Fluid Typography With vh And vw Units&lt;br /&gt;
https://www.smashingmagazine.com/2016/05/fluid-typography/ &lt;br /&gt;
Unlike responsive typography, which changes only at set breakpoints,&lt;br /&gt;
fluid typography resizes smoothly to match any device width.&lt;br /&gt;
*/&lt;br /&gt;
/* Variables for font size ( to be used in Vector.css ) see https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
&lt;br /&gt;
/*   Clamp() for min, preferred, max font size see https://developer.mozilla.org/en-US/docs/Web/CSS/clamp() */&lt;br /&gt;
/* Notes on font sizes&lt;br /&gt;
The default text size in browsers is 16px. So, the default size of 1em is 16px.&lt;br /&gt;
rem (root em) references the base font size of the document.&lt;br /&gt;
Assuming that the base font size is 16px, we get the following values:&lt;br /&gt;
1rem = 16px&lt;br /&gt;
1.5rem = 24px&lt;br /&gt;
0.5rem = 8px&lt;br /&gt;
*/&lt;br /&gt;
&lt;br /&gt;
/* Use clamp ( min preferred max ) */&lt;br /&gt;
:root { font-size: clamp( 1vw, 1.05rem, 1.2vw ); } &lt;br /&gt;
&lt;br /&gt;
/* Font sizes using variables from https://foxland.fi/naming-typography-css-variables/ */&lt;br /&gt;
/* Example   font-size: var(--font-size-100);   */&lt;br /&gt;
:root { --font-size-625: 62.5%;  /* 62.5% of root font size */&lt;br /&gt;
        --font-size-875: 87.5%;  /* 87.5% x root font size  */&lt;br /&gt;
        --font-size-090: 90%;    /* 90% x root font size    */&lt;br /&gt;
        --font-size-095: 95%;    /* 95% x root font size    */&lt;br /&gt;
        --font-size-100: 100%;   /* 100% = root font size   */&lt;br /&gt;
        --font-size-105: 105%;   /* 105% x root font size   */&lt;br /&gt;
        --font-size-110: 110%;   /* 110% x root font size   */&lt;br /&gt;
        --font-size-115: 115%;   /* 115% x root font size   */&lt;br /&gt;
        --font-size-120: 120%;   /* 120% x root font size   */        &lt;br /&gt;
        --font-size-125: 125%;   /* 125% x root font size   */&lt;br /&gt;
}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text Styles using Font Variables             */&lt;br /&gt;
&lt;br /&gt;
/* Font Sizes */&lt;br /&gt;
body { font-size: var(--font-size-100); }&lt;br /&gt;
p { font-size: var(--font-size-100); }&lt;br /&gt;
dl dt dd { font-size: var(--font-size-100); }&lt;br /&gt;
dd { margin-bottom: 1em; } /* added 11 Oct 2022 to space between a dd and the next dt */&lt;br /&gt;
/* ul ol li { font-size: var(--font-size-100); } */&lt;br /&gt;
&lt;br /&gt;
/* Headings are sized by percentage over the base font and also resize based on viewport width */&lt;br /&gt;
h1 {font-size: var(--font-size-125);}   	&lt;br /&gt;
h2 {font-size: var(--font-size-120);}   /* h2 was previously not defined */&lt;br /&gt;
h3 {font-size: var(--font-size-115);}&lt;br /&gt;
h4 {font-size: var(--font-size-110);}&lt;br /&gt;
h5 {font-size: var(--font-size-105);}&lt;br /&gt;
/* h6 {font-size: var(--font-size-100);} modified 4 Jan 2025 */&lt;br /&gt;
h6 {font-size: var(--font-size-090);}&lt;br /&gt;
&lt;br /&gt;
h1, h3, h4, h5, h6 {&lt;br /&gt;
	font-family: Arial, Helvetica, sans-serif;&lt;br /&gt;
	color: var(--clr-DeepPurple-base-30); &lt;br /&gt;
	font-weight: 600;&lt;br /&gt;
	}&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* Text layout using padding - use vw for responsive */&lt;br /&gt;
/* 10px = 0.625rem; 20px = 1.25rem; 30px = 1.875rem; 40px = 2.5rem; */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
/* h1, h2, h3 align with left of page. h4 is rarely used */&lt;br /&gt;
h5 { padding-left: 0.5vw; } &lt;br /&gt;
h6 { padding-left: 0.5vw; } &lt;br /&gt;
p  { padding-left: 1vw; padding-right:1vw; } &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* ordered list ol and altered padding for a nested list */&lt;br /&gt;
ol { display:block; position:relative; left:0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; padding-right:0.9vw; &lt;br /&gt;
     &amp;amp; ol { display:block; position:relative; left:-0.9vw; overflow-wrap: normal; word-wrap: normal; max-width:90%; list-style-type:lower-roman; }&lt;br /&gt;
} &lt;br /&gt;
&lt;br /&gt;
/* Definition List */&lt;br /&gt;
dl { padding-left: 2.5vw; padding-right:2.5vw; } &lt;br /&gt;
dt { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
dd { padding:right:2.5vw; padding-right:2.5vw; text-align:justify; }&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
/* _________________________________________________________________________________________________________________________*/&lt;br /&gt;
&lt;br /&gt;
/* 11 July 2025 Rows and Columns     */&lt;br /&gt;
&lt;br /&gt;
/* 26 July 2020 New row/column layout */&lt;br /&gt;
/* July 2025 Copied from www.mh370wiki.net ( with minor adjustments ) */&lt;br /&gt;
.Row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.row { display: flex; flex-flow: row nowrap; justify-content: flex-start; justify-content: space-between; width: 100%; } &lt;br /&gt;
.column-left { display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-right: 1em; }&lt;br /&gt;
.column-center {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; margin-left: 1em; margin-right: 1em; }&lt;br /&gt;
.column-right {display: flex; flex-flow: column; flex-grow: 1; flex-shrink: 1; padding-left: 1em; }&lt;br /&gt;
	&lt;br /&gt;
/* flex-basis determines column width */	&lt;br /&gt;
.col-width-75 { flex-basis: 75%; flex-shrink: 15;} /* usually main column 75% and Comments or Notes 25% */&lt;br /&gt;
.col-width-70 { flex-basis: 65%; flex-shrink: 13;} /* added 28 Oct 2020 to use with col-width-30 even though that is actually 33% */&lt;br /&gt;
.col-width-60 { flex-basis: 60%; flex-shrink: 12;} /* two columns in ratio 3:2 */&lt;br /&gt;
.col-width-50 { flex-basis: 50%; flex-shrink: 10;} /* two equal columns */&lt;br /&gt;
.col-width-40 { flex-basis: 40%; flex-shrink: 8;} &lt;br /&gt;
/*.col-width-30 { flex-basis: 33%; flex-shrink: 7;}  */&lt;br /&gt;
/* .col-width-30 { flex: 1 1 0;} /* 16 Nov 2020 If columns are equal then flex should be 1 1 0 */&lt;br /&gt;
.col-width-30 { flex-basis: 0; }&lt;br /&gt;
.col-width-25 { flex-basis: 25%; flex-shrink: 5;} /* usually right column  */&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1795</id>
		<title>Tab Removal</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1795"/>
		<updated>2025-08-20T10:02:26Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PageHeader}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;On the {{MH370Site}} website I wanted no Tabs. I wanted the page head to be uncluttered. And I did not want to open discussion pages (Talk) or allow the page source to be viewed. I just wanted it to look clean and simple.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Tab removal was achieved by adding the following to Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-main { display:none !important; }  /* Page tab */&lt;br /&gt;
#ca-talk { display: none !important; }       /* Discussion Tab */&lt;br /&gt;
#ca-history { display: none !important;}     /* View History / History Tab */&lt;br /&gt;
#ca-viewsource { display: none !important; } /* Users without Edit permission could still view the page source */&lt;br /&gt;
#ca-view { display:none!important; }         /* Read Tab (Vector Skin) */&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Edit tab is available to a logged-in user. And &#039;More&#039; opens the dropdown menu for Delete, Move and Protect. But these are not visible to the anonymous users.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Namespace Tabs&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;There are several namespaces which hold public content. Two namespaces had unfriendly names:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Namespace name appeared in a Tab but hadn&#039;t bothered me until now.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015inTab.jpg|alt=Namespace FI_2015 in a Tab|Namespace FI_2015 in a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;To make the displayed names more friendly I changed the name of each namespace to a descriptive title and retained the original name as the alias. This is quite safe - the namespace Number is critical and changing it effectively causes all the content to be lost and a new empty namespace to be created. So don&#039;t do that!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The new namespace names are:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information (2015) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report (2018) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But now the page head looks like this:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;And&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Removing the Tab with the Namesace Name&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The page source, shown by Firefox Web developer Tools, contains the various classes, including the id ca-nstab-safety_investigation_report_(2018). A similar id is generated for the Factual Information (2015).&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:LeftNavCSS.jpg|alt=Page source showing Tab in Left Navigation Tab|Page source showing Tab in Left Navigation Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;My usual approach is to identify the relevant class and ID and simply add CSS to Common.css to effectively &#039;display:none&#039;. But that did not work for me. Even identifying the namespace by either name or number in combination with ids and classes in different combinations and sequences was not successful.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;h5&amp;gt;A Workaround&amp;lt;/h5&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;I won&#039;t offer the following as a solution, even though it works, because there is probably a better way. If I find a solution I will update this article.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Tab containing the Namespace name has a white background. I figure that one way to check if you have identified a target item is to change its colour.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is the CSS creating the white background:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NStabWhiteBackground.jpg|alt=Identifying the class by its white background|Identifying the class by its white background]]&lt;br /&gt;
&amp;lt;p&amp;gt;I added this to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { background:green; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:GreenTab.jpg|alt=Namespace tab with green background|Namespace tab with green background]]&lt;br /&gt;
&amp;lt;p&amp;gt;Bold colours prove the CSS is functional!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;So now I have added this line to Common.css &amp;amp;emsp; &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { display: none !important; }&amp;lt;/code&amp;gt; &amp;amp;emsp; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018NoTab.jpg|alt=Page Head with no Tab for namespace name|Page Head with no Tab for namespace name]]&lt;br /&gt;
&amp;lt;p&amp;gt;The applied CSS is captured here:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:WhiteTabNotDisplayed.jpg|alt=White namespace tab not displayed in page head|White namespace tab not displayed in page head]]&lt;br /&gt;
&amp;lt;p&amp;gt;As you can see, the tab still has a white background, but the display:none has finally been effective. It also works for all custom namespaces./p&amp;gt;&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Next Steps&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;ol&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;I cannot believe that this is the correct way to remove these tabs. If/when I find a better way I will update this article. I can also predict that any upgrade to the version of MediaWiki and the Vector skin will require that this workaround be checked.&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ol&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Links&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
   &amp;lt;dt&amp;gt;Manual:Removing tabs&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Hide page tabs &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;How to remove the top navigation page tabs in MediaWiki &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt; &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot; &amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=File:WhiteTabNotDisplayed.jpg&amp;diff=1794</id>
		<title>File:WhiteTabNotDisplayed.jpg</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=File:WhiteTabNotDisplayed.jpg&amp;diff=1794"/>
		<updated>2025-08-20T09:58:36Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;White namespace tab not displayed in page head&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=File:SIR2018NoTab.jpg&amp;diff=1793</id>
		<title>File:SIR2018NoTab.jpg</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=File:SIR2018NoTab.jpg&amp;diff=1793"/>
		<updated>2025-08-20T09:55:59Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Page Head with no Tab for namespace name&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1792</id>
		<title>Tab Removal</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1792"/>
		<updated>2025-08-20T09:50:50Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PageHeader}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;On the {{MH370Site}} website I wanted no Tabs. I wanted the page head to be uncluttered. And I did not want to open discussion pages (Talk) or allow the page source to be viewed. I just wanted it to look clean and simple.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Tab removal was achieved by adding the following to Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-main { display:none !important; }  /* Page tab */&lt;br /&gt;
#ca-talk { display: none !important; }       /* Discussion Tab */&lt;br /&gt;
#ca-history { display: none !important;}     /* View History / History Tab */&lt;br /&gt;
#ca-viewsource { display: none !important; } /* Users without Edit permission could still view the page source */&lt;br /&gt;
#ca-view { display:none!important; }         /* Read Tab (Vector Skin) */&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Edit tab is available to a logged-in user. And &#039;More&#039; opens the dropdown menu for Delete, Move and Protect. But these are not visible to the anonymous users.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Namespace Tabs&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;There are several namespaces which hold public content. Two namespaces had unfriendly names:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Namespace name appeared in a Tab but hadn&#039;t bothered me until now.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015inTab.jpg|alt=Namespace FI_2015 in a Tab|Namespace FI_2015 in a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;To make the displayed names more friendly I changed the name of each namespace to a descriptive title and retained the original name as the alias. This is quite safe - the namespace Number is critical and changing it effectively causes all the content to be lost and a new empty namespace to be created. So don&#039;t do that!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The new namespace names are:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information (2015) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report (2018) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But now the page head looks like this:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;And&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Removing the Tab with the Namesace Name&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The page source, shown by Firefox Web developer Tools, contains the various classes, including the id ca-nstab-safety_investigation_report_(2018). A similar id is generated for the Factual Information (2015).&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:LeftNavCSS.jpg|alt=Page source showing Tab in Left Navigation Tab|Page source showing Tab in Left Navigation Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;My usual approach is to identify the relevant class and ID and simply add CSS to Common.css to effectively &#039;display:none&#039;. But that did not work for me. Even identifying the namespace by either name or number in combination with ids and classes in different combinations and sequences was not successful.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;h5A Workaround&amp;lt;/h5&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;I won&#039;t offer the following as a solution, even though it works, because there is probably a better way. If I find a solution I will update this article.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Tab containing the Namespace name has a white background. I figure that one way to check if you have identified a target item is to change its colour.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is the CSS creating the white background:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NStabWhiteBackground.jpg|alt=Identifying the class by its white background|Identifying the class by its white background]]&lt;br /&gt;
&amp;lt;p&amp;gt;I added this to Common.css &amp;lt;code&amp;gt;.vector-menu-tabs-legacy .selected { background:green; }&amp;lt;/code&amp;gt; with this result:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:GreenTab.jpg|alt=Namespace tab with green background|Namespace tab with green background]]&lt;br /&gt;
&amp;lt;p&amp;gt;Bold colours prove the CSS is functional!&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Links&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
   &amp;lt;dt&amp;gt;Manual:Removing tabs&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Hide page tabs &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;How to remove the top navigation page tabs in MediaWiki &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt; &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot; &amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=File:GreenTab.jpg&amp;diff=1791</id>
		<title>File:GreenTab.jpg</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=File:GreenTab.jpg&amp;diff=1791"/>
		<updated>2025-08-20T09:50:03Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Namespace tab with green background&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1790</id>
		<title>Tab Removal</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=Tab_Removal&amp;diff=1790"/>
		<updated>2025-08-20T09:44:27Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{PageHeader}}&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;On the {{MH370Site}} website I wanted no Tabs. I wanted the page head to be uncluttered. And I did not want to open discussion pages (Talk) or allow the page source to be viewed. I just wanted it to look clean and simple.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Tab removal was achieved by adding the following to Common.css.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#ca-nstab-main { display:none !important; }  /* Page tab */&lt;br /&gt;
#ca-talk { display: none !important; }       /* Discussion Tab */&lt;br /&gt;
#ca-history { display: none !important;}     /* View History / History Tab */&lt;br /&gt;
#ca-viewsource { display: none !important; } /* Users without Edit permission could still view the page source */&lt;br /&gt;
#ca-view { display:none!important; }         /* Read Tab (Vector Skin) */&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Edit tab is available to a logged-in user. And &#039;More&#039; opens the dropdown menu for Delete, Move and Protect. But these are not visible to the anonymous users.&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Namespace Tabs&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;There are several namespaces which hold public content. Two namespaces had unfriendly names:-&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Namespace name appeared in a Tab but hadn&#039;t bothered me until now.&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015inTab.jpg|alt=Namespace FI_2015 in a Tab|Namespace FI_2015 in a Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;To make the displayed names more friendly I changed the name of each namespace to a descriptive title and retained the original name as the alias. This is quite safe - the namespace Number is critical and changing it effectively causes all the content to be lost and a new empty namespace to be created. So don&#039;t do that!&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The new namespace names are:&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;ul&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Factual Information (2015) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; FI_2015&amp;lt;/li&amp;gt;&lt;br /&gt;
   &amp;lt;li&amp;gt;Safety Investigation Report (2018) &amp;lt;i&amp;gt;with an alias&amp;lt;/i&amp;gt; SIR_2018&amp;lt;/li&amp;gt;&lt;br /&gt;
&amp;lt;/ul&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;But now the page head looks like this:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:FI2015FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;And&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:SIR2018FullinTab.jpg|alt=Longer Namespace name in Tab|Longer Namespace name in Tab]]&lt;br /&gt;
&amp;lt;br /&amp;gt;&lt;br /&gt;
&amp;lt;h3&amp;gt;Removing the Tab with the Namesace Name&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The page source, shown by Firefox Web developer Tools, contains the various classes, including the id ca-nstab-safety_investigation_report_(2018). A similar id is generated for the Factual Information (2015).&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:LeftNavCSS.jpg|alt=Page source showing Tab in Left Navigation Tab|Page source showing Tab in Left Navigation Tab]]&lt;br /&gt;
&amp;lt;p&amp;gt;My usual approach is to identify the relevant class and ID and simply add CSS to Common.css to effectively &#039;display:none&#039;. But that did not work for me. Even identifying the namespace by either name or number in combination with ids and classes in different combinations and sequences was not successful.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;h5A Workaround&amp;lt;/h5&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;I won&#039;t offer the following as a solution, even though it works, because there is probably a better way. If I find a solution I will update this article.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;The Tab containing the Namespace name has a white background. I figure that one way to check if you have identified a target item is to change its colour.&amp;lt;/p&amp;gt;&lt;br /&gt;
&amp;lt;p&amp;gt;Here is the wite background:-&amp;lt;/p&amp;gt;&lt;br /&gt;
[[File:NStabWhiteBackground.jpg|alt=Identifying the class by its white background|Identifying the class by its white background]]&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
&amp;lt;p&amp;gt;&amp;lt;/p&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&amp;lt;h3&amp;gt;Links&amp;lt;/h3&amp;gt;&lt;br /&gt;
&amp;lt;dl&amp;gt;&lt;br /&gt;
   &amp;lt;dt&amp;gt;Manual:Removing tabs&amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/Manual:Removing_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;Hide page tabs &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.mediawiki.org/wiki/User:Subfader/Hide_page_tabs&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt;How to remove the top navigation page tabs in MediaWiki &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt;https://www.hostknox.com/knowledgebase/674/How-to-remove-the-top-navigation-page-tabs-in-MediaWiki.html&amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&lt;br /&gt;
   &amp;lt;dt&amp;gt; &amp;lt;/dt&amp;gt;&lt;br /&gt;
      &amp;lt;dd&amp;gt;&amp;lt;html&amp;gt;&amp;lt;a href=&amp;quot; &amp;quot; target=&amp;quot;_blank&amp;quot;&amp;gt; &amp;lt;/a&amp;gt;&amp;lt;/html&amp;gt;&amp;lt;/dd&amp;gt;&lt;br /&gt;
&amp;lt;/dl&amp;gt;&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=File:NStabWhiteBackground.jpg&amp;diff=1789</id>
		<title>File:NStabWhiteBackground.jpg</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=File:NStabWhiteBackground.jpg&amp;diff=1789"/>
		<updated>2025-08-20T09:36:17Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Identifying the class by its white background&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
	<entry>
		<id>https://mw.mh370.wiki/w/index.php?title=File:LeftNavCSS.jpg&amp;diff=1788</id>
		<title>File:LeftNavCSS.jpg</title>
		<link rel="alternate" type="text/html" href="https://mw.mh370.wiki/w/index.php?title=File:LeftNavCSS.jpg&amp;diff=1788"/>
		<updated>2025-08-20T09:32:39Z</updated>

		<summary type="html">&lt;p&gt;Grant: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Page source showing Tab in Left Navigation Tab&lt;/div&gt;</summary>
		<author><name>Grant</name></author>
	</entry>
</feed>