Comments on: A New Theme, A WP 3.0 Upgrade, Flickr, Tumblr – But No Actual Content http://www.aschroder.com/2010/09/a-new-theme-a-wp-3-0-upgrade-flickr-tumblr-but-no-actual-content/ Notes on Web Development Wed, 23 Dec 2020 09:25:05 +0000 hourly 1 https://wordpress.org/?v=4.8.15 By: Ashley http://www.aschroder.com/2010/09/a-new-theme-a-wp-3-0-upgrade-flickr-tumblr-but-no-actual-content/comment-page-1/#comment-1881 Mon, 20 Sep 2010 08:48:05 +0000 http://www.aschroder.com/?p=1147#comment-1881 Thanks for the feedback J.T – I’ve raised some of these with Woo, including the fact that if you leave your website blank it puts in ‘Your URL’ – pretty dumb. I just tweaked the CSS quickly, hopefully the colors are better now.

]]>
By: J.T. http://www.aschroder.com/2010/09/a-new-theme-a-wp-3-0-upgrade-flickr-tumblr-but-no-actual-content/comment-page-1/#comment-1879 Mon, 20 Sep 2010 08:24:18 +0000 http://www.aschroder.com/?p=1147#comment-1879 Did I mention escaping a’postrophe’s? Before submitting, they are escaped, after submitting, the slash shows up. And when I hit reply on my own comment, it prepopulates the text area with that entire comment. IS that intentional?

]]>
By: J.T. http://www.aschroder.com/2010/09/a-new-theme-a-wp-3-0-upgrade-flickr-tumblr-but-no-actual-content/comment-page-1/#comment-1878 Mon, 20 Sep 2010 08:21:48 +0000 http://www.aschroder.com/?p=1147#comment-1878 Weird? I use openSuse and Chrome. Nice update, it seems to work fine aside from…

1. Your avatar is a broken image icon.

2. The grey text in this write a comment box is so light grey, I have to squint my eyes to see what I’m reading. I take no responsibility for spelling mistakes.

3. Scratch that, I now see my typing actually appears to the left as well. That’s what you get when you are not a touch-typist and have to look at your keyboard…

4. The meny, I see you got what you wanted as for me, it turns in a search box once the footer is threatening to come in to view.

5. My paragraphing, using enters, doesn’t seem to be allowed. Do I need HTML?
Yes? Yes! nl2br would be nice here.
The pics etc. are so far down, I doubt we’d ever get to see it, which begs the question, why not move it up, or move it away?

Anyway, slick JS features and still very usable and readable.

]]>
By: Ashley http://www.aschroder.com/2010/09/a-new-theme-a-wp-3-0-upgrade-flickr-tumblr-but-no-actual-content/comment-page-1/#comment-1871 Sun, 19 Sep 2010 03:01:09 +0000 http://www.aschroder.com/?p=1147#comment-1871 Don’t you hate spending several hours in something that on the grand scheme of things is inconsequential… Anyway – because it bugged me too, here’s the fix:

1) Use jQuery ‘in view’ event plugin to detect when the footer is coming in to view.

jQuery('#footer-outer')
    .bind('inview', function (event, visible) {

2) When it’s in view – scroll up the menu block.

jQuery('.ribbon')
    .animate({ top: -400 });

3) When it’s back out of view scroll it back down.

jQuery('.ribbon')
    .animate({ top: 0 });

4) Extra merit – I added a little down arrow ↓ that appears when the menu is scrolled away, that will manually pull it down.


and

function showMenu() {
    jQuery('.ribbon')
    .animate({ top: 0 });
    jQuery('.down-arrow')
    .animate({ top: -30 });
}

And there you have it.

]]>
By: Ashley http://www.aschroder.com/2010/09/a-new-theme-a-wp-3-0-upgrade-flickr-tumblr-but-no-actual-content/comment-page-1/#comment-1870 Sat, 18 Sep 2010 22:48:13 +0000 http://www.aschroder.com/?p=1147#comment-1870 I’m also a bit dubious about that left menu behavior. What I really would like is for it to stay fixed only until the footer comes in to view, and then for it to position:static. Not sure how to achieve that though. I’ll have a nose around for something.

]]>
By: Graham http://www.aschroder.com/2010/09/a-new-theme-a-wp-3-0-upgrade-flickr-tumblr-but-no-actual-content/comment-page-1/#comment-1869 Sat, 18 Sep 2010 21:40:23 +0000 http://www.aschroder.com/?p=1147#comment-1869 Interesting the persistent menu on the left, though not sure about it going over the photos on the left… I think this comment box is pretty cool. All imho of course!

]]>