Legend
April 9, 2009
Question
How to make posts wider - solved :)
- April 9, 2009
- 3 replies
- 1860 views
hi
below is contents of GreaseMonkey http://www.greasespot.net/ script which will hide sidebar - ACTIONS and MORE LIKE THIS - and make posts wider ![]()
// ==UserScript==
// @8967549 Make Posts on forums.adobe.com Wider
// @description (c) www.adobescripts.com
// @include *forums.adobe.com*
// ==/UserScript==
var tabDoc = content.document;
tabDoc.getElementById('jive-body-sidebarcol-container').style.width = 0;
tabDoc.getElementById('jive-body-maincol').style.width = '95%';

