is there any way to replace a banner whit other banner if the user have a different browser ? if this can be done whit .htaccess will be awesome
I don't think this can be done with .htaccess, but you can use a javascript browser sniffer to do this. Just search Google.
Though I recommend using PHP to do this instead, you may be able to use and change the code below to fit your needs. Do a few searches on "RewriteCond ${HTTP_USER_AGENT}" and see if you can devise a way to create what your looking for. RewriteEngine on RewriteCond ${HTTP_USER_AGENT} BrowserHere RewriteRule .* http://www.websitehere.com Code (markup):