PHP-Login genau positionieren?!

Status
Nicht offen für weitere Antworten.

XiCXtrEME2007

Grünschnabel
Guten Abend/Morgen

Noch eine doofe Frage von mir, bitte nicht sauer werden ^^

Also i.wie bekomme ich es nicht auf die Reihe ein PHP Login Script genau in einem HTML Design zu positionieren? Also das Formular? :-D wie genau geht das?


LG

XiC
 
Hi!

Für genauere Hinweise / Tipps solltest du zunächst den Quellcode zeigen, damit man sieht, wie die Seite überhaupt aufgebaut ist, und an welcher Stelle das Formular eingebunden werden soll.
 
Okay kommt sofort ^^ ich habe noch kein richtiges design deswegen das erst einmal provisorisch ich wollte es halt schon mal wissen wies geht,,,
HTML:
<html>
<head>
<title>Untitled-3</title>
<meta http-equiv="Content-Type" content="text/html; charset=iso-8859-1">
</head>
<body bgcolor="#352859">
<!-- ImageReady Slices (Untitled-3) -->
<center><table id="Table_01" width="801" height="600" border="0" cellpadding="0" cellspacing="0">
	<tr>
		<td rowspan="8">
			<img src="images/Untitled-3_01.gif" width="74" height="600" alt=""></td>
		<td colspan="5">
			<img src="images/Untitled-3_02.gif" width="646" height="168" alt=""></td>
		<td rowspan="7">
			<img src="images/Untitled-3_03.gif" width="2" height="550" alt=""></td>
		<td rowspan="6">
			<img src="images/Untitled-3_04.gif" width="78" height="549" alt=""></td>
		<td>
			<img src="images/spacer.gif" width="1" height="168" alt=""></td>
	</tr>
	<tr>
		<td colspan="5">
			<img src="images/Untitled-3_05.gif" width="646" height="64" alt=""></td>
		<td>
			<img src="images/spacer.gif" width="1" height="64" alt=""></td>
	</tr>
	<tr>
		<td colspan="2" rowspan="2">
			<img src="images/Untitled-3_06.gif" width="151" height="149" alt=""></td>
		<td colspan="2">
			<img src="images/Untitled-3_07.gif" width="447" height="20" alt=""></td>
		<td rowspan="3">
			<img src="images/Untitled-3_08.gif" width="48" height="296" alt=""></td>
		<td>
			<img src="images/spacer.gif" width="1" height="20" alt=""></td>
	</tr>
	<tr>
		<td rowspan="2">
			<img src="images/Untitled-3_09.gif" width="49" height="276" alt=""></td>
		<td rowspan="2">
			<img src="images/Untitled-3_10.gif" width="398" height="276" alt=""></td>
		<td>
			<img src="images/spacer.gif" width="1" height="129" alt=""></td>
	</tr>
	<tr>
		<td rowspan="2">
			<img src="images/Untitled-3_11.gif" width="150" height="168" alt=""></td>
		<td rowspan="2">
			<img src="images/Untitled-3_12.gif" width="1" height="168" alt=""></td>
		<td>
			<img src="images/spacer.gif" width="1" height="147" alt=""></td>
	</tr>
	<tr>
		<td colspan="3">
			<img src="images/Untitled-3_13.gif" width="495" height="21" alt=""></td>
		<td>
			<img src="images/spacer.gif" width="1" height="21" alt=""></td>
	</tr>
	<tr>
		<td colspan="5">
			<img src="images/Untitled-3_14.gif" width="646" height="1" alt=""></td>
		<td>
			<img src="images/Untitled-3_15.gif" width="78" height="1" alt=""></td>
		<td>
			<img src="images/spacer.gif" width="1" height="1" alt=""></td>
	</tr>
	<tr>
		<td colspan="7">
			<img src="images/Untitled-3_16.gif" width="726" height="50" alt=""></td>
		<td>
			<img src="images/spacer.gif" width="1" height="50" alt=""></td>
	</tr>
</table></center>
<!-- End ImageReady Slices -->
</body>
</html>

Das Login "Formular" soll bei dem /auf dem Image Untitled3_11-gif gesetzt werden.


LG
 
Nimm mal das Grafikelement img aus der Tabellenzelle heraus und definiere es als Hintergrundbild:

Code:
<td rowspan="2" style="background:url(images/Untitled-3_11.gif);width:150px;height:168px;">
    <form>...</form>
</td>
 
Status
Nicht offen für weitere Antworten.
Zurück