Closed (fixed)
Project:
Zen
Version:
6.x-2.0
Component:
Miscellaneous
Priority:
Normal
Category:
Support request
Assigned:
Unassigned
Issue tags:
Reporter:
Created:
9 Jan 2011 at 13:25 UTC
Updated:
3 Jan 2014 at 02:41 UTC
Jump to comment: Most recent
Comments
Comment #1
jwilde commentedconditional style sheets work only with IE.
Here is the code you'll need to add hacks for webkit browers (chrome and safari). Add anywhere in your css and include all of your hacks within the brackets.
@media screen and (-webkit-min-device-pixel-ratio:0) {
body.node-type-support-section-page h1.title {
color: #F38717;
font-size: 1.5em;
font-weight: 500;
border:1px solid #000;
}
}
Good luck,
Jim
Comment #2
topdawg commentedHi, the wrap works in that webkit picks it up, the thing is, what can I use for the other browsers and how to force them to see the "OTHER" style not the one for the webkit?
Comment #3
tiziano.sartori commented@media screen and (-webkit-min-device-pixel-ratio:0) { /* CSS code */ }
works for me! Thanks
Comment #4
johnalbin:-)