Displaying attached files

How do I get the name of the attached files to be displayed in stead of a generic image? Most of my attachments will be text documents.

P

Comments

  • The filename should show if you hover the preview icon. If you want the text to show always, try adding this to your theme:

    .Attachment .FilePreview {
        display: none;
    }
    
    .Attachment .FileHover,.Attachment:hover .FileHover {
        display: inline;
        position: static;
        border: none;
        padding: 0;
        box-shadow: none;
    }
    
  • Bleistivt..

    That did it. Thanks very much

Sign In or Register to comment.