Rockomole
-
@font-face rendering issue in Chrome for PC
From what I've read, it's a recurring problem with Chrome. It struggles to render a lot of fonts properly, if not all (even Google fonts, ironically). I'd put my money on Font-Squirrel's optimization being right and that Google n…
-
@font-face rendering issue in Chrome for PC
I'm afraid -webkit-font-smoothing has no effect in Chrome PC, and moving SVG above WOFF makes the font fail to load (FF & Safari mac) and yeah, I used font-squirrel's code generator
-
@font-face rendering issue in Chrome for PC
*antialiased
-
@font-face rendering issue in Chrome for PC
Without the media query it won't render aliased on Chrome for PC. Here are screenshots I just made. Right shows it with media query included, left without. Screenshot These were taken from Browserlab, but I've seen the same directly from…
-
@font-face rendering issue in Chrome for PC
Not sure to be honest :P I came across it in another forum some time ago and decided to give it a shot. My fonts then started rendering fine in Chrome. It's possible that it's not bulletproof, but from my tests (on Browserlab and on variou…
-
@font-face rendering issue in Chrome for PC
Have you tried this? I'm not sure exactly why, but this has worked for me various times: @font-face { font-family: 'ResagokrLight'; src: url('../fonts/ResagokrLight-webfont.eot'); src: url('../fonts/R…
-
jQuery pop up box inside JS anythingSlider not working
Ah ha! I found the problem. The pop up was working in the slide, but the positioning assigned to it (because of the other pop up box on the page) was placing it outside of the slider. With overflow:hidden, it was simply not showing. So it turned out…
-
jQuery pop up box inside JS anythingSlider not working
As for the overflow:hidden issue, I don't mind moving the pop up box so it stays within the slide. Thanks for pointing that out :)
-
jQuery pop up box inside JS anythingSlider not working
Thank you Mottie. I'd prefer to have the pop up inside the slider, so I can have unique pop ups for each slide. I did a simple test before applying it to my site, and it seemed to work fine. Not sure if this helps, but I've uploaded the t…
-
@font-face for h1 not working for IE8
@ChristopherBurton Thanks!
-
@font-face for h1 not working for IE8
It actually seems to be alright. IE8 in Adobe Browserlab was not showing the embedded font, but when i checked it out on two PCs with IE8, it first loads the embedded font, changes it to default sans-serif, then reverts back to the embedded font (al…
-
@font-face rendering issue in Chrome for PC
I came across a better solution recently, so just wanted to update it here :) Add this as a new CSS rule after the @font-face rule @media screen and (-webkit-min-device-pixel-ratio:0) { @font-face { font-family: 'FONT-NAME'; …
-
@font-face for h1 not working for IE8
That's right, it's not HTML5. Thanks for the advise though!
-
@font-face for h1 not working for IE8
Sry, forgot to add link :) Your text to link...
-
@font-face for h1 not working for IE8
The code above works fine in IE7 and IE6, and it works fine in IE8 for the paragraph tags. I'm running some tests now (changed h1 to h2, and to a p tag with class) to see if it's a CSS conflict. Definitely not a CSS conflict, and I'm …
-
@font-face rendering issue in Chrome for PC
SOLVED: by adding text-shadow with these values text-shadow: 0 1px 0 rgba(0,0,0,0.01);
-
@font-face rendering issue in Chrome for PC
No luck with -webkit I'm afraid. Also no luck with the text-shadow hack
-
@font-face rendering issue in Chrome for PC
I've added a link to a screenshot above
-
Jquery Div height not working on page load
SOLVED: this code only calls setSizes when resized. It can be called explicitly by adding $(document).ready( function() { setSizes(); });