|
very odd that this did not email me when there was a discussion so sorry for the two month delay on a reply.
just checking for new scripts and came across this
so the code here
var tmpElm = document.createElement("style");
tmpElm.setAttribute("type", "text/css");
tmpElm.appendChild(document.createTextNode('#header{height: 25px;} #navigation,#footer,#side_base, .bar,.yellow-box,.tabMenu, .top-navigation.round, #timeline_heading{display:none !important;}#container,#contentx{width:100% !important;margin:0 !important;padding:0 !important;}#doingForm,fieldset,.info{width:100% !important;margin:0 !important;padding:0 !important;ovverflow:hidden !important;}#status{width:85% !important;font-size:12px !important;line-height:1.5 !important;}.content{font-size:12px !important;line-height:1.5 !important;}.vcard,.vcard img{width:48px !important;}td{vertical-align:top !important;text-align:right !important;}td.content .entry-content,td.content strong{display:block !important;text-align:left !important;margin-left:.8em !important;}td.content img{float:left !important;margin-top:-1.4em !important;}.bar h3{font-size:14px !important;}#logo img {width:105px !important; height:25px !important;}.section{overflow-y:scroll !important; width: 100% !important; height:300px !important; margin-top:10px !important;}#wrapper{padding:0 !important;}body{overflow:hidden !important;}'));
document.getElementsByTagName('head')[0].appendChild(tmpElm);
var logo = document.getElementsByTagName('img');
logo[1].style.width = '105px';
logo[1].style.height = '25px';
logo[1].style.padding = '5px 0 0 20px';
just comment that out or remove it as it is the part that deals with changing the look of it
|