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.
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;
}
Thanks, it is work!