Author Topic: hide "about" link and enable full headers view in message preview window v 0.8.2  (Read 8927 times)

Offline deisler

  • Newbie
  • *
  • Posts: 3
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.

Offline JohnDoh

  • Global Moderator
  • Hero Member
  • *****
  • Posts: 2,855
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

Code: [Select]
#preview-allheaders {
display: none;
}

to

Code: [Select]
#preview-shortheaders {
display: none;
}
« Last Edit: October 24, 2012, 08:52:43 AM by JohnDoh »
Roundcube Plugins: Contextmenu, SpamAssassin Prefs, and moreā€¦

Offline deisler

  • Newbie
  • *
  • Posts: 3
Thanks, it is work!