vote up 1 vote down star

I need to do chrome/opera hacks because of a font replacement script wanted by the client that breaks things... this is sad but everything is working in IE6-7, FF2-3 and Safari. I have no way of fixing the script itself, I can only hack around it using CSS and HTML.

I'm trying to do something in the lines of :

<!--[if IE 6]>
   <link rel="stylesheet" href="ie6.css" type="text/css" media="screen" />
<![endif]-->

Is it possible?

I saw this way of doing chrome specific fixes like:

body:nth-of-type(1) .elementOrClassName
{
/* properties go here */
}

Is this working? Is there a simpler way? What about Opera?

Thanks!

flag

1  
I love the way you can identify opera in javascript if(window.opera) { /*opera specific action*/ } Maybe you could use this to add specific style for it. I don't know about Google Chrome. – Andrija Jun 3 at 15:38
Thanks, if I can't figure out a way to do specific CSS this will help – marcgg Jun 3 at 15:44
Why can't you mess with the JavaScript? If you can't touch the JavaScript file, can you override a function or two of theirs with your own code? – Nosredna Jun 3 at 16:02
The thing causing the issue is a script created by the client and they don't want me to modify it... I could make JS fixes to update the JS using andrija's anwser or lobstrosity's, but I'd prefer do something cleaner. I thought there was a CSS conditionnal for Chrome and Opera – marcgg Jun 3 at 16:12

2 Answers

vote up 2 vote down check

A clean javascript way to do this: http://rafael.adm.br/css_browser_selector/

It ads browser specific classes to the body tag of your html which you can use in your css like:

.opera #thingie, .chrome #thingie {
  do: this;
}

Hope this helps.

link|flag
This is not exactly what I was looking for, but it's a clean enought approach since apparently there is no pure CSS way of doing that. Thanks! – marcgg Jun 4 at 16:14
vote up 0 vote down

I haven't tested this solution, but according to this blog entry, you could try the following for Chrome:

if (navigator.userAgent.toLowerCase().indexOf('chrome') > -1)
{
     var chromeCss = document.createElement("link");

     chromeCss.rel = "stylesheet";
     chromeCss.href = "ChromeStyle.css";

     document.getElementsByTagName("head")[0].appendChild(chromeCss);
}
link|flag
He said he can only touch the HTML and CSS, but not the JavaScript. – Nosredna Jun 3 at 16:01
The way I read it, he can't modify the external JavaScript files that do the actual font replacement, but if he can edit the HTML, he could always add a script tag :) – Lobstrosity Jun 3 at 16:25
Yes I can, but I'd rather not if possible. If you tell me that's the only way then... I guess I don't have any other options ! – marcgg Jun 3 at 16:27

Your Answer

Get an OpenID
or

Not the answer you're looking for? Browse other questions tagged or ask your own question.