|
| Counter auf einer Grafik legen ? | |
Bianca
|
Verfasst am: 10.04.2008, 11:21 |
|
|
|
Hallo,
ich habe mal eine Frage und zwar möchte ich gerne den Counter über einer Grafik legen, wäre das möglich?
Meine Navigation auf www.vip-report.de besteht aus reiner Grafik. Ich habe den jetzt erstmal in einer normalen Seite eingebaut aber da gefällt er mich nicht so.
Vielen herzlichen dank für die Hilfe.
Mit vielen Grüße,
Bianca
|
|
Firewolf Administrator
|
Verfasst am: 28.10.2008, 10:25 |
|
|
|
Wie oben beschrieben den Counter in eine Tabelle oder eine DIV-Area packen und das Bild entweder als Hintergrundbild festlegen oder, falls die Grafik kein Hintergrundbild ist, eine DIV-Area darüberlegen.
Hintergrundbild bei Tabelle mit background="images/background.gif" festlegen, bei DIV einfach über CSS mittels background-image url(images/background.gif); definieren.
Ich hoffe, das hilft dir
|
|
Bianca
|
Verfasst am: 28.10.2008, 13:14 |
|
|
|
Ok danke, ich werde das mal ausprobieren.
Hier ist mal der Link www.vip-report.de und der counter soll nun unter das Impressum. Aber der rote Umriss ist eine Grafik und da war ich mir unsicher ob das geht.
|
|
Firewolf Administrator
|
Verfasst am: 28.10.2008, 18:18 |
|
|
|
Wenn ich das richtig sehe, sollte hier eine DIV-Area genau das Richtige sein:
<div style="position:absolute; top:500px; left:15px; width:120px; height:100px;">
<?php include("counter/txtcounter.php"); ?>
</div> |
Position und Größe einfach noch anpassen.
Einzufügen in nav.htm bspw. über der Zeile
<table style="width: 18%" cellspacing="0" cellpadding="0"> |
|
|
| | |
Bianca
|
Verfasst am: 29.10.2008, 08:44 |
|
|
|
Hallo,
vielen dank für die schnelle Antwort
ich habe nun den Code in der nav.html abgelegt. Habe aber lieber nochmal den Quelltext hier angehängt, damit du noch mal überprüfen kannst. Muss ich die nav.html eigentlich als php Datei abspeichern?
<html>
<head>
<style type="text/css">
.style1 {
border-style: solid;
border-width: 0;
}
</style>
</head>
<base target="Hauptframe">
</head>
<body style="margin: 0" link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF">
<table style="width: 18%" cellspacing="0" cellpadding="0">
<tr>
<td>
<map name="FPMap0">
<area target="_top" href="../index.htm" shape="rect" coords="44, 63, 120, 81">
<area target="Hauptframe" coords="44, 97, 127, 115" shape="rect" href="../sonstiges/fragen.htm">
<area target="Hauptframe" href="../fotos/eventgalerie.htm" shape="rect" coords="44, 116, 117, 133">
<area target="Hauptframe" href="../interviews/interviews.htm" shape="rect" coords="44, 132, 139, 150">
<area target="Hauptframe" coords="44, 150, 107, 166" shape="rect" href="../sonstiges/links.htm">
<area target="Hauptframe" href="http://www.vip-report.de/gaestbook/index.php" shape="rect" coords="45, 166, 123, 184">
<area target="Hauptframe" href="../sonstiges/mail.php" shape="rect" coords="44, 185, 119, 204">
<area target="Hauptframe" href="../sonstiges/disclaimer.htm" shape="rect" coords="44, 321, 108, 341">
<area target="_blank" href="http://www.myspace.com/vipreport" shape="rect" coords="31, 240, 124, 274">
</map><img border="0" src="../navi5.jpg" usemap="#FPMap0" width="176" height="500"></td>
<table style="width: 18%" cellspacing="0" cellpadding="0">
<div style="position:absolute; top:500px; left:15px; width:120px; height:100px;">
<?php include("counter/txtcounter.php"); ?>
</div>
</tr>
</table>
</body></html>
|
|
| | |
Firewolf Administrator
|
Verfasst am: 29.10.2008, 17:58 |
|
|
|
Da ist ein Tabel-Tag zu viel. Wo kommt der her?
Ich dachte eher so:
<html>
<head>
<style type="text/css">
.style1 {
border-style: solid;
border-width: 0;
}
</style>
</head>
<base target="Hauptframe">
</head>
<body style="margin: 0" link="#FFFFFF" vlink="#FFFFFF" alink="#FFFFFF">
<div style="position:absolute; top:500px; left:15px; width:120px; height:100px;">
<?php include("counter/txtcounter.php"); ?>
</div>
<table style="width: 18%" cellspacing="0" cellpadding="0">
<tr>
<td>
<map name="FPMap0">
<area target="_top" href="../index.htm" shape="rect" coords="44, 63, 120, 81">
<area target="Hauptframe" coords="44, 97, 127, 115" shape="rect" href="../sonstiges/fragen.htm">
<area target="Hauptframe" href="../fotos/eventgalerie.htm" shape="rect" coords="44, 116, 117, 133">
<area target="Hauptframe" href="../interviews/interviews.htm" shape="rect" coords="44, 132, 139, 150">
<area target="Hauptframe" coords="44, 150, 107, 166" shape="rect" href="../sonstiges/links.htm">
<area target="Hauptframe" href="http://www.vip-report.de/gaestbook/index.php" shape="rect" coords="45, 166, 123, 184">
<area target="Hauptframe" href="../sonstiges/mail.php" shape="rect" coords="44, 185, 119, 204">
<area target="Hauptframe" href="../sonstiges/disclaimer.htm" shape="rect" coords="44, 321, 108, 341">
<area target="_blank" href="http://www.myspace.com/vipreport" shape="rect" coords="31, 240, 124, 274">
</map><img border="0" src="../navi5.jpg" usemap="#FPMap0" width="176" height="500"></td>
</tr>
</table>
</body>
</html> |
Und ja, du musst es als php-Datei speichern, sonst wird der PHP-Code nicht ausgeführt.
|
|
| | |
Bianca
|
Verfasst am: 30.10.2008, 08:42 |
|
|
|
Hallo,
ich habe das mal probiert und es hat leider nicht geklappt. Du kannst ja mal schauen www.vip-report.de !
|
|
Firewolf Administrator
|
Verfasst am: 31.10.2008, 10:02 |
|
|
|
Hm? Es scheint doch zu funktionieren oder hast du noch etwas geändert?
Jetzt noch die Position der Box und die Schriftgröße anpassen...
Zum Beispiel mit:
<div style="position:absolute; top:360px; left:15px; width:167px; height:100px;"> |
|
|
Du kannst keine Beiträge in dieses Forum schreiben. Du kannst auf Beiträge in diesem Forum nicht antworten. Du kannst deine Beiträge in diesem Forum nicht bearbeiten. Du kannst deine Beiträge in diesem Forum nicht löschen. Du kannst an Umfragen in diesem Forum nicht mitmachen.
|
Alle Zeiten sind GMT + 1 Stunde
Seite 1 von 2
|
|
|
| |