Author |
|
Nowak Newbie
Joined: 11 November 2008 Location: Czech Republic
Online Status: Offline Posts: 9
|
Posted: 12 March 2009 at 1:22am | IP Logged
|
|
|
Hi,
there is single minor issue that has been on my mind since I've first installed your Webmail. The status/error message box appears at the top right corner overlaping the logout and settings link in some skins. Can I move the box somewhere else? Probably the top middle position would be the best..
By the way in 4.5 the calendar opens in a new window and going back to mailbox opens yet another window. Is it a bug or a feature? :)
Anyway these are really a low priority issues. Keep up a good work!
Best Regards,
Ondrej
|
Back to Top |
|
|
Andrew AfterLogic Support
Joined: 28 April 2006 Location: United States
Online Status: Offline Posts: 1189
|
Posted: 12 March 2009 at 7:28am | IP Logged
|
|
|
Quote:
there is single minor issue that has been on my mind since I've first installed your Webmail. The status/error message box appears at the top right corner overlaping the logout and settings link in some skins. Can I move the box somewhere else? Probably the top middle position would be the best.. |
|
|
Yes, it's possible to move it. Let's take skin "AfterLogic" for example:
file \web\skins\AfterLogic\styles.css, line ~356:
Code:
.wm_information, .wm_error_information, .wm_report_information
{
position: absolute;
top: 0;
right: 150px; // MODIFYING THIS VALUE CHANGES HORIZONTAL MARGIN FROM THE RIGHT SCREEN EDGE (BY DEFAULT 0)
overflow:hidden;
padding: 0px 0px 2px 2px;
} |
|
|
Quote:
By the way in 4.5 the calendar opens in a new window and going back to mailbox opens yet another window. Is it a bug or a feature? :) |
|
|
That's a feature
Best regards,
Andrew
|
Back to Top |
|
|
Nowak Newbie
Joined: 11 November 2008 Location: Czech Republic
Online Status: Offline Posts: 9
|
Posted: 13 March 2009 at 2:45am | IP Logged
|
|
|
Dear Andrew,
Thank you very much for your reply.
I have however another question. Since the preview panel displays message header with hidden details in default, would it be possible to add the CC field into the consolidated view in any subsequent release? Currently I need to unhide the details on each incoming mail to see other recipients. Option to disable the hidden detail view as default might also be the solution.
Best Regards,
Ondrej
|
Back to Top |
|
|
Igor AfterLogic Support
Joined: 24 June 2008 Location: United States
Online Status: Offline Posts: 6104
|
Posted: 16 March 2009 at 7:00am | IP Logged
|
|
|
We don't think we'll ever put such setting into regular releases of WebMail Pro, but you can modify the source code to implement the behavior you need. Locate the following method in class.screens-parts.js file:
Code:
Fill: function (msg, contact) |
|
|
Find the following line at the very end of the method declaration (line ~2129):
Replace it with:
Regards,
Igor
|
Back to Top |
|
|