Yeah, I'm interested. Starting right now to make things look nice
Well for the root page
http://trac.videolan.org it would be first of all enough to change main.css to the current one used by
http://www.videolan.org in order to fit with the new design.
EDIT:
Your setup of mediawiki seems to have user skin modifications disabled. User:Altglass/monobook.css is not being imported.
What the wiki does:
Code: Select all
<style type="text/css">/*<![CDATA[*/
@import "/index.php?title=MediaWiki:Common.css&usemsgcache=yes&action=raw&ctype=text/css&smaxage=18000";
@import "/index.php?title=MediaWiki:Monobook.css&usemsgcache=yes&action=raw&ctype=text/css&smaxage=18000";
@import "/index.php?title=-&action=raw&gen=css&maxage=18000&smaxage=0";
/*]]>*/</style>
What the wiki should do:
Code: Select all
<style type="text/css">/*<![CDATA[*/
@import "/w/index.php?title=MediaWiki:Common.css&usemsgcache=yes&action=raw&ctype=text/css&smaxage=2678400";
@import "/w/index.php?title=MediaWiki:Monobook.css&usemsgcache=yes&action=raw&ctype=text/css&smaxage=2678400";
@import "/w/index.php?title=-&action=raw&gen=css&maxage=2678400&smaxage=0&ts=20070615115408";
@import "/w/index.php?title=User:Altglass/monobook.css&action=raw&ctype=text/css";
/*]]>*/</style>