Wikinews talk:Newsroom/Archive 2
Add topicAppearance
Latest comment: 1 year ago by Asked42 in topic A mobile friendly version of Newsroom!
This is an archive of past discussions from Wikinews talk:Newsroom. Do not edit the contents of this page. If you wish to start a new discussion or revive an old one, please do so on the current page. |
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; } }