On http://www.smithblog.co.uk, I want to put an image with the text 'My Photos', or something like it, to the left of the leader-container div, which contains a filmstrip from my flickr.
I was hoping to achieve this using relative positioning for the first widget area, like so:
#leader #first-leader {
position:relative;
left:-100px;
float:left;
width:50px;
}
#leader #second-leader {
width: auto;
margin:0px;
padding-top:10px;
}
However, because the #leader-container div is set to
overflow:hidden;
this widget area doesn't display, and changing it to visible bodges up the layout for reasons I don't really understand!
Any tips on how to best achieve this effect?