In the good old days when I started here (the practically pre-historic 2003) images on websites were simple enough, just upload your image, link to it with <img src="whatever"> and there it was. The only other option I used was to align it left or right so that the text would flow around the image at its chosen point on the page.
Not any more. Fast forward to the University style sheets (which, may I say are fantastic, making it easy to put together a professional looking page) and images cause the uninitiated problems. Put the old image tag within a paragraph tag and the image will automatically go to the right, with a boarder and the text will flow around it. In 90% of cases, this is exactly what you'd want the image to do. Put the image outside a paragraph tag and it will appear on a line of its own. This is usually not what is wanted.
For the record, what you now need, in xhtml, is a style containing a float and or a display command. The purest way to do this is to add a class to your external css style sheet containing the relevant instructions:
img.floatright { float:right; }
then in your code <img class="floatright" src="whatever">
The lazy way is to put it all in the img tag: <img style="float: right" src="whatever">
For the record, if you just want an image to appear after your text (rather than aligned right or left), set "float" to none and use "display" instead
<img style="float: none; display:inline" src="whatever">
Wednesday, 2 February 2011
Monday, 17 January 2011
eBooks pages
eBooks pages are a bit of a problem, aren't they? Ideally eBooks would all be catalogued in the normal way and people would find them whenever searching the Library catalogue. There would also be an option in that catalogue to restrict the search to only full text electronic items that could be easily accessed from home. Here at Cambridge, this just isn't going to happen in the short term - collections change too rapidly and cataloger's time too limited for our OPAC to hold a comprehensive list - so we need to have an eBooks web page.
The problem is that the page quite quickly gets too wordy or is misleading. Our users can access all eBooks in some collections but only some in others - I want a simple yet accurate way of letting our readers know what we have.
In search of inspiration, I have checked the eBooks pages of some other university libraries (in rough order as they appear under a Google search for "University Library UK")
Oxford - list of eBooks with short description of holdings. Grouped by subject.
Glasgow say to search the library catalogue; their eBooks must all be catalogued - good for them!
York have everything in their catalogue but also lists major collections and has a link to a source of free eBooks.
Liverpool list their collections with text to indicate whether people can access all collections or just part of it. They also have "key resources" links at the side using easily recognisable product logos.
University of London say to search the catalogue.
Sheffield - each ebook title is listed individually and can be accessed by subject or from an A-Z list.
The OU have a browsable list of publisher's sites with a detailed description of contents and holdings. Like us, some, but not all titles are in the Library catalogue.
For the record ours it at http://www.lib.cam.ac.uk/electronicresources/ebooks.php
We have come to no conclusions yet, but watch this space....
The problem is that the page quite quickly gets too wordy or is misleading. Our users can access all eBooks in some collections but only some in others - I want a simple yet accurate way of letting our readers know what we have.
In search of inspiration, I have checked the eBooks pages of some other university libraries (in rough order as they appear under a Google search for "University Library UK")
Oxford - list of eBooks with short description of holdings. Grouped by subject.
Glasgow say to search the library catalogue; their eBooks must all be catalogued - good for them!
York have everything in their catalogue but also lists major collections and has a link to a source of free eBooks.
Liverpool list their collections with text to indicate whether people can access all collections or just part of it. They also have "key resources" links at the side using easily recognisable product logos.
University of London say to search the catalogue.
Sheffield - each ebook title is listed individually and can be accessed by subject or from an A-Z list.
The OU have a browsable list of publisher's sites with a detailed description of contents and holdings. Like us, some, but not all titles are in the Library catalogue.
For the record ours it at http://www.lib.cam.ac.uk/electronicresources/ebooks.php
We have come to no conclusions yet, but watch this space....
Subscribe to:
Posts (Atom)