This is a discussion on "help me with inserting images on webpage..." within the Web Page Design section. This forum, and the thread "help me with inserting images on webpage... are both part of the Design Your Website category.
|
|
|
|
|
![]() |
||
help me with inserting images on webpage...
|
||
| Notices |
![]() |
|
|
LinkBack | Thread Tools |
|
|||
|
I have a question...
How can I make an image be sent in front of an image too? This question refers to the HTML coding. |
|
|
|
|||
|
Re: help me with inserting images on webpage...
you could set the bottom image as background in a div/cell
|
|
||||
|
Re: help me with inserting images on webpage...
set the "background" image as a background in your code, whether it's in CSS or in html, then simply use the <img src="" /> element right on top of it.
Or, open Photoshop and make them into one image in the appearance you desire and make life easy on yourself. |
|
|||
|
I have a website. The background color of my homepage is black. I inserted a web template which is divided into 4 images. So my background color, not image, is black and my foreground images are the 4 images (web template). How do I make a code placing another image in front of the 4 image-web template? Can you please give an example...Im confused...
|
|
||||
|
Re: help me with inserting images on webpage...
To declare the background color to be black, your code will have one of these two bits:
In it's CSS = body {background-color:#000;} or In it's HTML = <body bgcolor="#000000"> This takes care of the main background color. Each of the four template images will be declared one of these two ways: CSS = #topLeft {background or HTML = <td background="images/top-left.jpg"> The above gives you the template background image. Finally, the top-level image is placed only with HTML and will look like: <img src="images/nice-picture.jpg" alt="bla bla" /> When I have more time (or maybe somebody else can do it), I'll try to show you in an entire coded up page. |
|
|||
|
Hey herkalees,
Does the code in which the template image is to be set as background needs an ending tag "</td>"? |
![]() |
| Tags |
| help, inserting, images, webpage |
| Thread Tools | |
|
|
Similar Threads
|
||||
| Thread | Thread Starter | Forum | Replies | Last Post |
| inserting time | phiero21 | JavaScript Forum | 1 | May 2nd, 2008 20:09 |
| DOM - Inserting <script> between <head> | okendoze | JavaScript Forum | 2 | Mar 13th, 2008 21:52 |
| Inserting a XML variable in to a getURL | dangergeek | Flash & Multimedia Forum | 1 | Nov 14th, 2007 09:21 |
| Inserting Session into the database | franknu | PHP Forum | 11 | Jun 17th, 2007 00:16 |
| Inserting an array into a database. | Gup | Classic ASP | 2 | Aug 10th, 2006 08:49 |