PDA

View Full Version : Menu Buttons on to a background?



mondaynightmike
Wed 27th Mar '02, 11:42am
Hi i would like to know if it is possible to add the top menu buttons so they appear over a background image. Is there some code to make the image appear behind the imageS??

Here is what i mean:

If you know what i mean could you please help me.

rickjansen105
Wed 27th Mar '02, 12:09pm
you need to make a table with the first pic on the bg, so you can put the other images on top of it... like this:

<TABLE>
<TR>
<TD background="ferrari.gif"><IMG src="top_home.gif"><IMG src="top_profile.gif"></TD>
</TR>
</TABLE>

you need to change this code to fit your needs of course, but this is the basic thing...
I hope you understand what I mean...

mondaynightmike
Wed 27th Mar '02, 2:19pm
Yes thanks. I shall try it and let you know how i go.

mondaynightmike
Wed 27th Mar '02, 2:43pm
Ok i have done it yet i can't get it to center it.

Max_Radius
Mon 1st Apr '02, 3:02am
the simplest workaround for that problem is to type

<center>
after the <td> tag
and before all the buttons and

</center>

after all of the buttons
and before the </td> tag.

TGO
Thu 4th Apr '02, 11:32pm
<TABLE>
<TR>
<TD background="ferrari.gif" valign="center" align="center"><IMG src="top_home.gif"><IMG src="top_profile.gif"></TD>
</TR>
</TABLE>

That is how you get the buttons dead center of the background image.