Call me slow – but I only just today discovered that WordPress has some built-in photo gallery functionality!
I’ve been using the NextGen plugin for quite some time now – but often the feature set is just too much for requirements. Continue reading
Call me slow – but I only just today discovered that WordPress has some built-in photo gallery functionality!
I’ve been using the NextGen plugin for quite some time now – but often the feature set is just too much for requirements. Continue reading
First attempt with @media queries after being inspired at this year’s Web Directions.
It’s still pretty basic, but it works (mostly). You drag the width of your supported browser (Safari for example) until it’s a bit less than the 960px grid used here, and the sidebar will drop down to below the content as the whole design takes on a fluid width.
Try it and see! Continue reading
Been battling with the excellent NextGen gallery plugin for WordPress this afternoon.
I had created an Album, which is a container for mutiple Galleries. Simple enough. But then, once you had selected a Gallery, I wanted to display the Gallery description on the Gallery page above the thumbnails.
In the Manage gallery section you can type a description, but it didn’t seem there was any way to display that on the actual website.
So if you need to, open the file gallery.php which is inside the plugins directory, nextgen-gallery/view/gallery.php
Next, above the line
<div class="ngg-galleryoverview" id="ngg-gallery-<?php echo $gallery->ID ?>">
add this:
<h2><?php echo $gallery->title; ?></h2>
<p class="gallery-desc"><?php echo nl2br($gallery->description); ?></p>
This will give you an H2 with the Gallery Title, and then the description below it.
Just got a new server in the office so updated to the latest EasyPHP – version 3. However, all was not smooth:
Deny from all
. (Or at least comment it out, anyway.)LoadModule
line.None
to All
. (Source)Now I can get back to work!
Many years ago the Web Standards Project (or WASP) fought the fine fight to pressure browser manufacturers into complying with some sort of standard version of HTML. Prior to that we almost had to build separate sites for Netscape and Internet Explorer – it was horrible.
We have come so far with browsers, but unfortunately most email clients are, well, a long way behind. If you have ever tested an HTML email in a few different clients you’ll know the frustration.
Yesterday’s launch of the Email Standards Project hopes to remedy this situation. Some people love it, some hate it, but HTML email is here to stay. And if we could have the proper standards support in email clients then it’s probably fair to say that a lot of those opposed would change their mind.
We have a long way to go, but at least now we have a vehicle!
There has been a lot of talk lately (and rightly so) about the disadvantages of using captcha to stop comment spam.
I’m not a big fan. They’re often hard to read even for someone with reasonably normal vision.
“Is that a zero or the letter O?”
“Upper case C or lower case c?”
Others have suggested some sort of simple logic question, like asking “What’s 1+1” and having the user enter a ‘2’ in a text box.
That might be better, but it also requires some thought.
So I noticed that on Slideshare they prefix a captcha device with the question, “Are you human?”
And it got me thinking, can bots deal with radio buttons? Can we ask a question like this?
[syntax,human_form.htm,html4strict]
I must admit I haven’t done any research, but I’m thinking:
Point 2 is probably the most contentious. I’m making a big assumption there.
Has anyone else tried this? Can anyone spot any obvious disadvantages?