Wikinews talk:Newsroom/Archive 2


A mobile friendly version of Newsroom!

The current version of this page on mobile view does not appear user-friendly and presents difficulties in navigation. I request that we consider developing a mobile-friendly version to address these issues. This can be achieved by implementing a 'nomobile' CSS style div section only for desktop devices/version and a 'mobile-only' CSS style div section specifically for mobile devices, along with a modified rearrangement of the boxes- on mobile view.

If the mediawiki platform does not already have a CSS code for this purpose, we can utilize the following code snippet:

 @media only screen and (max-width: 390px) {
	.nomobile {
		display: none !important;
	}
 } 

@media only screen and (min-width: 391px) {
	.mobile-only {
		display: none !important;
	}
 }
 

Asked42 (talk) 20:53, 26 June 2023 (UTC)Reply

Return to the project page "Newsroom/Archive 2".