Forum Moderators: not2easy

Message Too Old, No Replies

Fixed Size Background Image?

         

the7thmagus

3:51 pm on Mar 2, 2006 (gmt 0)

10+ Year Member



I want to set a background image that is fixed in size to display on certain tags.

From what I know, background-image command makes it so the image is only displayed as far as the text goes...

Here is an example of what I am aiming for:

If I have a <cd>CD NAME and Description....</cd> then an image of a whole CD will be displayed behind this text, regardless of if the text covers the whole length

Is this possible?

Kufu

4:40 pm on Mar 2, 2006 (gmt 0)

10+ Year Member



Yes. You'll want to use CSS to define the size of a DIV with the CD image as the background:

<div style="height:50px; width:60px; background:url('cdimage.jpg') no-repeat;">

That should do it.

Good luck.