rosspenman
-
Ajax article posts
I would use history.pushState rather than hashbangs. That would work better with JS disabled and with linking.
-
Ajax article posts
Do you mean you want the URL to change when clicking on the arrow? That would then make it linkable.
-
Permalinks not working on latest blog post.
Perhaps it's something in your JavaScript. Try turning JS off and see if the links work.
-
Question about Design view vs Code editor
It's not quite design view, but the navigator in Coda lets you see everything in your document and jump to it. In CSS, the list items even render with the CSS applied to them! Look at the sidebar on the right. Coda is Mac-only, though.
-
Separate CSS files VS One CSS file (@Media)
I think that the first way is better. While browsers will load both, some newer browsers (latest WebKit) will delay the loading of a stylesheet that doesn't currently apply until after the page has been shown and everything else has been loaded…
-
superscript with underlined text not looks good in IE7
Not sure what you mean… could you post a screenshot?
-
entire page scrolls down when close button is clicked
How is the close button supposed to appear? Clicking on the images does nothing.
-
How do I create a 3 second delay in this jQuery. I want it to load the text 3 seconds after the page
You can use a setTimeout to delay the execution of a block of code. For example: jQuery.noConflict(); jQuery(document).ready(function () { var intervalTime = 50, div = jQuery(".animate"), st = div.text(), timer…
-
Fading div out smoothly
You could either do it with CSS animations, or just run $("#preload").hide().fadeIn(); once the DOM is ready. (Just at the start of your last tag).
-
Question about Design view vs Code editor
One thing that might help you is Code Folding, which is a feature of some editors. It let's you hide (fold) the contents of some HTML elements, which will make the page easier to navigate at a glance.
-
Parsing XML with JavaScript: No value is returned
Could you make a CodePen? That might make it a bit easier to see what's going on and try stuff out.
-
Permalinks not working on latest blog post.
That esc_url function is one I haven't seen before. Does it work if you remove it? Or use esc_attr instead?
-
Padding Problem around slider
Is this what you're looking for? .block-6 .block-inner { padding: 0; }
-
Height 100%
You need to set 100% height on every parent of menu-bg for it to work.
-
Question about Design view vs Code editor
If you write your HTML in a way that's easily-readable, you shouldn't need to find where an element lies in the code - it should be easy to tell from its surroundings. Try adding comments to your HTML files describing what's happening…
-
postion: absolute
Try this. img { position: absolute; margin: 0 auto; left: 0; right: 0; }
-
Lightbox JS v2.0
Putting jQuery.noConflict() at the top of your script and wrapping all your jQuery with (function($) { // Your jQuery goes here })(jQuery); might help. jQuery has some documentation on using it with other libraries.
-
Main nav links don't work on ipad after first click ... using smooth scroll
Works fine on my iPad 2 (iOS 6.0.1).
-
Very Strange Reflow or site layout bug/issue
Works fine for me too. Safari 6.0.2, OS X 10.8.2.
-
CSS-Tricks Archive link
There's usually a short description of the link, but it isn't a long article. Check out the links on the homepage now!
-
CSS-Tricks and android opera mobile 12.10
Perhaps you should contact @chriscoyier directly with these… Seems like it's affecting the look of the site pretty badly.
-
Reading RSS with JQuery
RSS is just XML, so you should be able to use jQuery's XML capabilities ($.parseXML()). Then you can navigate it just as you would any other DOM.
-
What is the best way of clearing floats in css?
I usually use this one: ::after { clear: both; display: block; content: ""; } In the event that I have already used up my ::after pseudo-element, or I need to support ancient browsers, I would use overflow: hidden; or overflow: au…
-
jQuery toggleClass() & CSS3 Transition Issues
The rule-of-thumb I use is that if a property is numerical, it will probably transition, if not, it probably won't. Another way of looking at it is if the animation makes sense halfway. For example, halfway through an animation from opacity: 0…
-
Inconsistency between CHROME and SAFARI??
Looks exactly the same in Chrome and Safari for me… (Safari 6.0.2, Chrome 26.0.1394.0, OS X 10.8.2).
-
Personal site review (responsive layout)
That's awesome! A really good responsive site. One suggestion I have would be to change the style of the social links down at the bottom. They look slightly out-of-place. Maybe just use an rgba colour instead of solid white.
-
Speech Recognition in Chrome
I think one case where it might be useful is on a search engine, like if Google implemented it on their homepage. I definitely think that it isn't a good idea to enable it on every input on your page.
-
wordpress blog post
+1 for Digging into WordPress. It's a really good way to learn WordPress development.
-
CSS first-child not working on site, but works on CodePen?
You could always try Selectivzr, which is a JavaScript polyfill that brings support for advanced selectors to Internet Explorer. That will allow you to use :first-of-type.