Mobile app version of vmapp.org
Login or Join
Smith883

: How can I customize the Apache licence for my template design? I have a template with the following license: /*! * name of original creator - name of theme (originalcreator.com) * Code licensed

@Smith883

Posted in: #Css #Html #Legal #Licenses #WebsiteDesign

I have a template with the following license:

/*!
* name of original creator - name of theme (originalcreator.com)
* Code licensed under the Apache License v2.0.
* For details, see www.apache.org/licenses/LICENSE-2.0. */
/* Global Styles */


I've modified about 50% of the CSS and 70% of the HTML, just same as I've just copied some code for my project, but actually I've made many modifications with many deletions and additions. I want to give it to my client, but what can I do?


Can I delete that CSS comment?
How can I get a license for my modifications?
Can I write "designed by me" in the footer?

10.01% popularity Vote Up Vote Down


Login to follow query

More posts by @Smith883

1 Comments

Sorted by latest first Latest Oldest Best

 

@Voss4911412

Can I delete that CSS comment?


No, it's not just a comment, it's a license and attribution notice for the original creator.

Even though you modified the original code, as I covered in my answer here, under Licensing conditions, the Apache License 2.0 states: You must retain, in the Source form of any Derivative Works that You distribute, all copyright, patent, trademark, and attribution notices from the Source form of the Work...


How can I get a license for my modifications?


Simply add a license and attribution notice like the one in your question (with your name as the "creator") to any modifications or derivative works that you wish to assign a license to. You may even add different license terms and conditions as stated here:


You may add Your own copyright statement to Your modifications and may
provide additional or different license terms and conditions for use,
reproduction, or distribution of Your modifications, or for any such
Derivative Works as a whole...


Can I write "designed by me" in the footer?

As long as you maintain the license attributions and copyright notices in the code, you're free to add any generalized visible statements like this to your template, which many template and theme designers using third-party libraries & frameworks chose to do.

10% popularity Vote Up Vote Down


Back to top | Use Dark Theme