• Our team is looking to connect with folks who use email services provided by Plesk, or a premium service. If you'd like to be part of the discovery process and share your experiences, we invite you to complete this short screening survey. If your responses match the persona we are looking for, you'll receive a link to schedule a call at your convenience. We look forward to hearing from you!
  • The BIND DNS server has already been deprecated and removed from Plesk for Windows.
    If a Plesk for Windows server is still using BIND, the upgrade to Plesk Obsidian 18.0.70 will be unavailable until the administrator switches the DNS server to Microsoft DNS. We strongly recommend transitioning to Microsoft DNS within the next 6 weeks, before the Plesk 18.0.70 release.
  • The Horde component is removed from Plesk Installer. We recommend switching to another webmail software supported in Plesk.

Horde Theme on Small(ish) Screens

S

steogede

Guest
The current default theme for Horde IMP requires a screen resolution of more than 1024 pixels wide - otherwise when viewing your mail the left portion of the top menu bar is not visible - i.e. Firefox completely hides it under the object below and IE will display as many buttons as will fit in the menu bar and hide the rest under the object below.

There are a few ways to work around this:
  • change the theme
  • change settings to 'just icons no text' (should make the menu small enough to fit).
  • get a bigger monitor
  • change the CSS (I'll cover that in a moment).

I edited '/usr/share/psa-horde/themes/wps_sober/screen.css' lines 288 and 289 such that:
Code:
    height           : 50px !important;
    height           : 54px;
became:
Code:
    min-height       : 50px !important;
/*
    height           : 50px !important;
    height           : 54px;
*/

However the graphic for the background is only 50 pixels high, so it looks a little funny. I do quite like the new theme, so my suggestion would be to look into fixing it, rather than changing the default theme.
 
Back
Top