Roundcube Community Forum

News and Announcements => General Discussion => Topic started by: deisler on October 23, 2012, 06:55:46 PM

Title: hide "about" link and enable full headers view in message preview window v 0.8.2
Post by: deisler on October 23, 2012, 06:55:46 PM
Hello.
Help me please.
I using roundcube v. 0.8.2.
How can i hide "about" link in up left corner and enable full header view mode in message preview window by default?
Thanks.
Title: Re: hide "about" link and enable full headers view in message preview window v 0.8.2
Post by: JohnDoh on October 24, 2012, 08:41:52 AM
to hide the about link you can remove it from [rc root]/skins/larry/includes/header.html. to make full header view always enabled i'm not sure. may be a plugin which adds some onload JS that presses the button would do the trick

or you could change the css. in mail.css chage


#preview-allheaders {
display: none;
}


to


#preview-shortheaders {
display: none;
}
Title: Re: hide "about" link and enable full headers view in message preview window v 0.8.2
Post by: deisler on October 24, 2012, 10:51:20 AM
Thanks, it is work!