my blog crashes ie7?

You have a javascript error on line 451: ReferenceError: Can’t find variable: jQuery. and then Failed to load resource: the server responded with a status of 403 (Forbidden): axx1cxj-b.css. The second one looks like s stylesheet that typekit is trying to load.

Fix warning: Missing argument

do_action( ‘after_setup_theme’ ); doesn’t pass any parameter. You are cutting something of the length 0 after theme setup. Why? Plus, your registration with add_action doesn’t tell WordPress that you want two parameters. The default is one parameter. You don’t need this call at all. If you define the function in your functions.php it will be … Read more

Problem with UTF8. italian/russian characters

The content you get is not utf-8 encoded or the encoding is damaged by the importer. Usually SimplePie – the feed reader WordPress uses – is quite good at handling such cases. I wonder what an importer you use … Anyway, I’ve written a function to enforce utf-8 output. You should implement this very early … Read more

My blog suddenly can’t find my stylesheet?

Have you changed anything in the stylesheet? WordPress looks for the header of that file to be in a specific format. http://codex.wordpress.org/Theme_Development#Theme_Stylesheet You could also check that all folders/filenames are consistent. Hopes this helps in some way – good luck!