I have not understood all that well, you want to upload a css file hosting or just the images?
Anyway, if you are hosting a page where your css, do something simple, instead of importing css, copy and paste the entire contents of the css within the style tags in html. Surely you're trying to do something like this:
Code:
<head>
<link rel="stylesheet" type="text/css" href="mushblue-blogger-template.css" />
</ head>
Change to this:
Code:
<head>
<style type='text/css'>
/* Copy the contents here in your css file * /
</style>
<head>
Then you only have to upload them to a free hosting imageshack or tinypic type, and copy the url to your css, for example:
Code:
<head>
<style type='text/css'>
body (
background-image: url ('http://img496.imageshack.us/img496/8311/logo045ay.jpg')
)
</style>
<head>
I hope that was helpful.
Bookmarks