0 Members and 1 Guest are viewing this topic.
I want to adjust the width of the column called "Name .extension". Need it to be a little wider so that the file name, if long, does not show up as two lines, rather just one line. Where do I edit the HTML to do that, if possible? Thanks.
#files tr td:first-child { text-align:left; }
#files tr td:first-child { text-align:left; overflow:hidden; word-wrap:normal; white-space:nowrap; text-overflow:ellipsis; max-width:300px; }
Hi!, just follow these steps...1) Press F6 to edit the template2) Find the following line:Code: [Select]#files tr td:first-child { text-align:left; }3) Change it with the following:(The text marked in red color is the addition)This is just an example, it's up to you adapting to your needs (you need to have some CSS knowledge). The above code, is ONLY valid for the default template of v2.3m!Hope it helps!Cheers,Leo.