| My problem is now, how do i work with LESS files when i want to upload it into my FTP? |
You do not have to upload the LESS files because the browser cannot translate it.
| Will it compile itself from "name.less" to "name.css" when i upload it thru Dreamweaver on my FTP? |
If set properly, Dreamweaver will automatically compile the CSS file when saving the LESS file.
| Do i need to first compile it and then upload the file or is this happening automatic? |
As said above, compiling happens after saving the LESS file, the CSS file can then be uploaded to the remote server.
Please note: Sass and LESS are both very powerful CSS extensions. You can think of them as more of a programming language designed to make CSS more maintainable, themeable, and extendable. Both Sass and LESS are backward compatible so you can easily convert your existing CSS files just by renaming the .css file extension to .less or .scss, respectively. LESS is JavaScript based and Sass is Ruby based. You need to have a good understanding of CSS before embarking on Sass or LESS.