i am trying to add up all the css link to one. So it helps to load the page much quicker.
the links i am using are:
<link rel="stylesheet" href="index_files/stylesheet.css" type="text/css">
<link rel="stylesheet" href="/index_files/goStyle.css" type="text/css"/>
<link rel="stylesheet" href="/index_files/jquerylogin.css" type="text/css">
<link rel="stylesheet" href="/index_files/jquery-ui.css">
As of research, suggestion are to combine all the css to one file, but i am having problem with same class name affecting different label.
I tried adding the link like:
<link rel="stylesheet" href="index_files/stylesheet.css+goStyle.css+jquerylogin.css+jquery-ui.css" type="text/css">
But no luck.
Please somebody help me with this.