Hello Darko,I think your problem / issue / is that you need to compress or optimize the JS and CSS on your website.Solutions like Combine them or Compress is for a developer if you don't know how to do it (i think this service is cheap).90% of the sites (wordpress and other) have this issue because the developers don't like to Combine (make all Java scripts in 1 file / same for CSS) or Compress them (instead of line after line the code can be side by side).Example on the CSS:Not compress -body{ line-height : 1;}ol, ul { list-style: none;Compress - body{line-height:1}ol,ul{list-style:none}*I used colors to separate the code, every color is on a new line.