Feed the Flory’s
May 23rd, 2008Read on if you’re a friend of Rob and Miranda.
This page is here purely to help me help you (if you’re a friend of Rob and Miranda’s) to feed them for a while as they get used to having a baby.
The idea is that we provide them with meals on wheels for a couple of weeks or so.
Here’s the deal:
- I’ll keep a plan here of who’s providing them with a meal on which nights
- If you want to cook for them, comment or contact me to say for which night
- I’ll keep updating the following list
- On your day - make them something lovely, call them to agree a time to deliver it and feed the Flory’s!
- They don’t have any food dislikes etc. Rob likes Bath Ales! Miranda probably better stay off the chilli and garlic!
- Remember to collect your dishes soon! I remember we had a pile of dishes for ages after Sophie was born.
So here’s the list of meals we’re aiming for:
| Saturday, 24 May | David & Andrea |
| Sunday, 25 May | Nelsons |
| Monday, 26 May | Richard and Katy |
| Tuesday, 27 May | Sarah |
| Wednesday, 28 May | Grand Florys |
| Thursday, 29 May | Grand Florys |
| Friday, 30 May | Grand Florys |
| Saturday, 31 May | The Mittons |
| Sunday, 01 June | The Cliffords |
| Monday, 02 June | |
| Tuesday, 03 June | Richard and Katy |
| Wednesday, 04 June | |
| Thursday, 05 June | Anna Weaver |
| Friday, 06 June | Naomi |
Thanks for your support
Peace
David
And just for your amusement, here’s a bit of Flory family flikr photo fun:
Welcome Anna!
May 22nd, 2008I’m very excited and hugely pleased that Rob and Miranda have a beautiful baby girl.
Born at 14:49 on Wednesday 22nd May.
Yay, Yay and Yay some more!
Amazon Wishlist
May 2nd, 2008I just started an Amazon wish list. Not particularly so that I could get freinds to buy me stuff, but mostly so that I could add things to it and then buy them when I feel flush!
Neat CSS Mouse Over Image Swapping
April 16th, 2008I recently did a little website design for my friend Martin Bell of Footworks Orthotics and had to search for quite a while to find a solution to one of my requirements:
- Have the Footworks Logo visible on the page
- Have it linked to the home page
- Provide a mouse over effect to give feedback that it was a link when you pointed at it
- Have “Footworks Orthotics” available as plain text for screen readers and search engines or for people veiwing without images
- Have the logo graphic visible when the page is printed and for people veiwing without CSS or images
This is the effect that I came up with:
And it works instantly with no javascript and no preloading of images. Nice!
So I thought I’d share the code that I cobbled together from a load of other sources (which I can’t remember unfortunately)
So you need to get two versions of your logo:
The normal looking one that’s going to be seen by people browsing without CSS or printing the page:

and you need a wierd looking image that is double height and contains both the natural image and the mouse over version:

The magic is that you only ever see half of the above image. The top half in the natural state and the bottom half when you mouseover the link. So as soon as you see the logo, mouseover bit is already loaded and ready for action! It’s lovely.
The CSS is:
<style type="text/css"><!--
div.FootworksLogoImage {
/* I had the following in here for the Footworks site to position it down and right from it's natural place
position:relative;
top:27px;
left:45px; */
background:white; // This is just for this blog entry
padding:10px 10px 10px 10px; // This is just for this blog entry
}
.FootworksLogoRollover a {
display:block;
width: 260px;
height: 46px;
background: url("http://www.footworksorthotics.co.uk/wp-content/themes/Footworks/images/FootworksLogoLinkBG.gif") 0 0 no-repeat;
text-decoration: none;
border:0;
}
.FootworksLogoRollover a:hover {
background-position: 0 -46px; // so this is the magic that shifts the double image up to show the 'over' image
}
@media screen { // This section makes the Image in the containg Div dissapear off the screen to reveal the Background of the <a> tag when it's viewed on a computer.
.FootworksLogoRollover img {
position: absolute; //For some reason I *had* to put the space between the ":" and the "a" when writing this post in WordPress!
top:-500000px;
left:-5000000px;
}
}
--></style>and the HTML is:
<div class="FootworksLogoImage">
<div class="FootworksLogoRollover">
<a href="/" title="Footworks Orthotics"><img src="http://www.footworksorthotics.co.uk/wp-content/themes/Footworks/images/FootworksLogo.gif" border="0"></a>
</div>
</div>So there you go. I’d welcome any comments. I’m never very good at bothering with standards compliance so if anyone wants to improve the code - let me know!
Peace to you all


