profit
Newbie
Karma: 10
Offline
Posts: 1
|
 |
« on: August 22, 2006, 03:18 » |
|
Does your code look like this ... see below ... notice that after the < / head > and < body > tags the < STYLE > code goes on and on and on....
Is there a way to put this in a css file? I always heard that this was better for the spiders so that they can process the content of the page faster.
Are you loading your style code in a separate file?
I have one domain with 50 different templates for each of my 50 different blogs. I do not want to put the style code in the body of my code.
Do you have a solution? Is the solution 50 css files? Is this possible?
. . . . . .
< / head >
< body > < STYLE TYPE="text/css" > a { color: #036; }
a img { border-bottom: 1px solid #ccc; border-top: 1px solid #ccc; border-right: 1px solid #ccc; border-left: 1px solid #ccc; }
a:visited { color: #369; }
a:hover { . . . ETC. ETC. ETC. ETC. ETC. . . . . . . < / STYLE >
|