Author Topic: Old forum style  (Read 8062 times)

0 Members and 1 Guest are viewing this topic.

Offline
***
Old forum style
« on: December 15, 2014, 06:52:09 AM »
It is possible to go back to old forum skin??

Even if new bootstrap looks cool, it has a too wide skin, so i have to move my eyes too much to read things that was easier using old skin. Also removed unread from forum index, because if i wanna see them i will click unread's link :P

Also, gray letters over another gray background... bad idea.

I made a basic GreaseyMonkey script to condense style up to 60% of screen with a 600px min width. It's not the best solutions, but it works...

If you wanna use it, just create new script, paste that and save:
Code: [Select]
// ==UserScript==
// @name         CWP forum style tweaker
// @namespace    cwpforumstyletweaker
// @version      0.1
// @description  tweaks new cwp forum bootstrap style to condensed
// @author       erm3nda
// @match        http://forum.centos-webpanel.com/*
// @grant        none
// @require  http://ajax.googleapis.com/ajax/libs/jquery/1.6.2/jquery.min.js

// ==/UserScript==
//////start JQuery Compatibility statement//////
this.$ = this.jQuery = jQuery.noConflict(true);
//////end JQuery Compatibility statement//////

// Main tweak, condense all to 60%
$('.wrapper').width('60%');
$('.wrapper').css('min-width', '600px');

// remove #desno div content and fill div with main table content
$('#desno').html('');
$('table.table_list').width('100%'); // default is 75%

// for post view, remove gray background, add a little padding-left
$('div.inner').css('padding-left', '1em');
$('div.inner').css('background', '#fafafa');

Regards.
« Last Edit: December 15, 2014, 07:40:22 AM by erm3nda »
8==D it's a function that try to compare 8 (int) against D (string) which returns True or False depending on the asker.