Greasy Fork is available in English.

Slight Style Enhancer for Presse.com

Enhances the styling on diePresse.com slightly

// ==UserScript==
// @name        Slight Style Enhancer for Presse.com
// @namespace   MegaByteSSEPresse
// @description Enhances the styling on diePresse.com slightly
// @include     http*://*diepresse.com/*
// @run-at      document-start
// @version     4.1
// @grant    	GM_addStyle
// ==/UserScript==

	GM_addStyle(
		"#wrapper {									    \
			float: none !important;						\
			margin: auto !important;					\
		}                                               \
		#navi.sticky {									\
			right: unset !important;					\
			left: unset !important;					    \
		}								\
		#articlefeatv2 {									\
			right: unset !important;					\
			left: unset !important;					    \
		}									\
		#network {									\
			right: 0 !important;					\
			left: 0 !important;					    \
			margin: auto !important;					\
		}"								
	);