I have an issue on this site I'm building - for some odd reason firefox is adding an extra pixel worth of width on the main body which is screwing with the borders on either side of my title image - so I'm trying to simply create a 1px wider title image and load that if the user is using firefox.
Problem is, I got this piece of code straight from the apache website [
httpd.apache.org...] - and only modified it slightly:
RewriteCond %{HTTP_USER_AGENT} ^Mozilla.*
RewriteRule ^sitemain/titl\.png$ /sitemain/title_m.png [L]
RewriteRule ^sitemain/titl\.png$ /sitemain/title.png [L]
And it's rewriting all browsers except Opera to title_m.png - which is even worse than it was before.
Just asking here if there is any better way of doing this that will actually work without negative side effects?