• If you are still using CentOS 7.9, it's time to convert to Alma 8 with the free centos2alma tool by Plesk or Plesk Migrator. Please let us know your experiences or concerns in this thread:
    CentOS2Alma discussion

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