Support Home Page › Forums › Joomla Software › Easy File Uploader Module › How to display custom defined "Choose a file…" message NOT justified text? › Re: How to display custom defined “Choose a file…” message NOT justified text?

@Morrolan. Thanks for providing the login information. I had a look at the site. Basically, it is a CSS issue. You can address it in several ways. Apparently the “text-align” property for the html label is defaulted to “justify” instead of “left“. You can inspect the CSS by right clicking on the text and selecting “Inspect Element”. It is similar to looking at javascript errors, except that you are looking at the DOM tree for the page and the related CSS.
Anyways, to fix it, you have two options. You can add a block in your template’s CSS file similar to:
1 2 3 4 |
label<br /> {<br /> text-align: left;<br /> } |
Or, you could edit the default.php file in modules/mod_easyfileuploader/tmpl and go to line 19, and change “<label for” to “<label style=”text-align:left;” for“
There are your choices. Let me know how it works out.