rosspenman
-
How much do you charge for hosting ?
@zizibi If you're reselling hosting from another provider, a lot of them have a way to auto-update WordPress. I know Dreamhost does.
-
Why do we include html[xmlns] in Clearfix?
This is another great site to look at for browser hacks. http://browserhacks.com
-
Is there such thing as a SVG Wizard
I had a look into using Google Web Fonts with SVG a while ago. From what I remember support was pretty inconsistent.
-
Media Query in Script tag
The best thing to use for this is probably just window.innerWidth (I think there's some weirdness with this in old IE - but jQuery's $(window).width() sorts that). If you need full-on Media Queries, you could use window.matchMedia. https…
-
JS Challenge - Looking for a suggestion
Image maps are definitely the best way to do this. They are still completely valid HTML5!
-
JS Challenge - Looking for a suggestion
You'll probably want to use image maps for this. https://developer.mozilla.org/en-US/docs/HTML/Element/map
-
Help with cool effect using Javascript and background fixed!
Something like this? Note: I used Sass for this. To see the CSS, click the Sass text at the top of the text box on CodePen.
-
css menu
You can do it in CSS alone, even animated, but it will only be animated by modern browsers. (In older ones it will just jump.) Here's a quick demo.
-
Best CSS3 Supporting Script for Unsupported Browsers?
I would recommend against CSS3 PIE and If you only need it for things like rounded corners, then screw it. I'm sure the users of older browsers would prefer that a page loads quicker than takes ages to run a huge JavaScript to round some corner…
-
Controlling when CSS animations/transitions run
Everything working fine for me…
-
Highlight line?
Is this what you're looking for? (CSS) a:hover { border-bottom: 3px solid red; }
-
Image options in iOS device
If you could show us some code it might help, but -webkit-touch-callout: none; might be what you are looking for. The other thing I can think of is it sounds like you're setting the href attribute on the element, which wouldn't work. A…
-
CSS Help
It would appear that the hover animations are done with CSS, as they work with JavaScript disabled. I think that it is line 450 of http://www.sewsublime.co.uk/uploads/10892753/File/hover/css/style.css causing the problem. Using Internet Explorer fi…
-
Web design critique and advice
I agree with @Jarolin in that the slide effect doesn't really work when it's the same picture. A fade would work much better.
-
Tutorials on Entypo Icon Font (and icon fonts in general)
Chris did a screencast about this that should be really helpful for you.
-
Web Page Critique / Suggestions
Very nice! I looked at it on my iPhone and it looked great.
-
HTML5 Enabling js for IE 8,9. Not working
In your CodePen, you've used , but IE 8 needs to load this JS too, so it should either be , or .
-
Permalinks not working on latest blog post.
@TheDoc we've already established that it isn't a JS problem - it still didn't work with JS off.
-
Permalinks not working on latest blog post.
Try typing in the URL manually (or copy/paste from the Inspector) and make sure that works. It might just lead to the same page, which WordPress sometimes create if the link doesn't exist.
-
Reading RSS with JQuery
You can do it with $.parseXML(). Example: $.ajax("rss_url", function(rss) { xml = $.parseXML(rss); $(xml).find("item title").each(function() { $("ul").append($("", {html: $(this).html()})); }); …
-
Trying to use SASS (not scss)
@AndyHowells I think they are both current versions, just the SCSS variant was introduced later.
-
How to use different styles in uniform plugin?
You could use the CSS :nth-of-type() selector, but note that it only works in modern browsers: div.radio:nth-of-type(1) { // Specific styling for the first radio. }
-
font-size in High DPI
It could also be that you aren't using the viewport meta tag, which would mean that your iPod is rendering the page zoomed out. See if putting this inside your tag makes it better:
-
Trying to use SASS (not scss)
It should work automatically with .sass files. Make sure you have the extension right?
-
iOS compatible audio player
If you put whatever solution you're currently using inside the HTML audio tag, it will be used by browsers that don't support it.
-
Ajax article posts
history.js isn't necessary, but if you want better browser support, you can use it.
-
Ajax article posts
Yup. You'd use an if statement to make sure it only AJAXed certain links. Or, alternatively, make your entire site AJAX!
-
Padding Problem around slider
I used the WebKit inspector, which is sort of the same thing as Firebug.
-
Ajax article posts
I wrote a tutorial on history.pushstate and jQuery.