Html Template keep being soft rejected on themeforest i need help please

Rejection Details :

can anyone please tell me what to improve …
My Template : https://goo.gl/MBmRbq9

PROPER EVENT BINDING: Consider using the preferred .on() method
rather than .click(), .bind(), .hover(), etc. For best performance and
concise code use event delegation whenever possibleSTRICT MODE REQUIRED: All JavaScript should be written with “use
strict” mode on. Please note that strict mode is scoped. For concise
code it is recommened to placed JQUERY PERFORMANCE NEEDS IMPROVEMENT: Your jQuery code can benefit
from some performance tweaks. Please make sure that your jQuery is
properly formatted, commented and that you are caching and chaining
whenever possible.TYPOGRAPHIC HIERARCHY: The typographic hierarchy of this item requires additional work. SPACING AND ALIGNMENT: There are spacing and alignment issues in
this item. Please make sure that all elements are aligned properly and
spacing is consistent from section to section. Here are some articles
with more information regarding negative space and proper spacing:

  1. Bind all your events using the .on() method, something like this $(‘selector’).on(‘scroll/click/hover’, 'filter-selector, callback);

  2. You need to strict mode in your code for this wrap all your code in a IIFE function
    (function($, w, d){
    “use strict”;
    // my code here
    }(jQuery, window, document));

Also make sure you cache all your jquery objects, try to have less of these $(‘selector’) as much as you can. Also if you have something like this $(’.nav a’).on(‘click’, callback); transform it to something like this $(’.nav’).on(‘click’, ‘a’, callback);

  1. You should check that the space between elements should be the same all over your site ( I need to see the link to tell you more ).

p.s. Your link is not working.

Hi Hawk,

Happy New Year

Thank for response

goo.gl/MBmRbq

please re check my link can anyone please tell me what to improve …

JQUERY PERFORMANCE NEEDS IMPROVEMENT: Your jQuery code can benefit
from some performance tweaks. Please make sure that your jQuery is
properly formatted, commented and that you are caching and chaining
whenever possible.

TYPOGRAPHIC HIERARCHY: The typographic hierarchy of this item
requires additional work.

SPACING AND ALIGNMENT: There are spacing and alignment issues in
this item. Please make sure that all elements are aligned properly and
spacing is consistent from section to section. Here are some articles
with more information regarding negative space and proper spacing:

i am waiting for your response.

Hellow,

Nice your template design.

You must need to follow this issues. It can be solved your templates problems.

JQUERY PERFORMANCE NEEDS IMPROVEMENT:

For more information please read: http://code.tutsplus.com/tutorials/10-ways-to-instantly-increase-your-jquery-performance--net-5551

Please, use strict mode for main script file (main.js).

TYPOGRAPHY HIERARCHY:

Please, add more default font family.

Helvetica, Arial, sans-serif;

SPACING AND ALIGNMENT:

Please, check your template section alignment (margin, padding, position, width, height, z-index, :before and :after) issues.

Happy New Year

Thank to suggestions

1 Like