Suche im Forum:
Suchen


Autor Nachricht
Beitrag01.03.2007 um 17:13 (UTC)    
Titel: 2 verschiedene felder

<style type="text/css">





table#cursor{cursor: url(http://files.poqbum.com/Files/Cursors/page1/3dc_3043.ani);} </style>
<table id="cursor" height="100" width="100" border="1">
<tbody>
<tr>
<td>&nbsp;</td>
</tr>
</tbody>
</table>
<style type="text/css">





table#cursor{cursor: url(http://files.poqbum.com/Files/Cursors/page1/blue_lightning.ani);} </style>
<table id="cursor" height="100" width="100" border="1">
<tbody>
<tr>
<td>&nbsp;</td>
</tr>
</tbody>
</table>

Also des sind jetzt zwei Felder in jedem soll was anderes angezeigt werden aber das untere feld überniehmt immer die einstellungen von oberen und es wird in beiden feldern das gleiche angezeigt was mache ich falsch?

und wie kann man die felder neben einander stellen und nicht untereinander?

ich weiß ich bin nervig *g*

thx an die genies
Beitrag01.03.2007 um 17:15 (UTC)    
Titel: Re: 2 verschiedene felder

hardtobeat hat Folgendes geschrieben:
<style type="text/css">





table#cursor{cursor: url(http://files.poqbum.com/Files/Cursors/page1/3dc_3043.ani);} </style>
<table id="cursor" height="100" width="100" border="1">
<tbody>
<tr>
<td>&nbsp;</td>
</tr>
</tbody>
</table>
<style type="text/css">





table#cursor{cursor: url(http://files.poqbum.com/Files/Cursors/page1/blue_lightning.ani);} </style>
<table id="cursor" height="100" width="100" border="1">
<tbody>
<tr>
<td>&nbsp;</td>
</tr>
</tbody>
</table>

Also des sind jetzt zwei Felder in jedem soll was anderes angezeigt werden aber das untere feld überniehmt immer die einstellungen von oberen und es wird in beiden feldern das gleiche angezeigt was mache ich falsch?

und wie kann man die felder neben einander stellen und nicht untereinander?

ich weiß ich bin nervig *g*

thx an die genies
#
sollte es net erstnma so?

<style type="text/css">
table#cursor{cursor: url(http://files.poqbum.com/Files/Cursors/page1/3dc_3043.ani);} </style>
<table id="cursor" height="100" width="100" border="1">
<tbody>
<tr>
<td>&nbsp;</td>
</tr>
</tbody>
</table>
<style type="text/css">


und so?

<style type="text/css">
table#cursor{cursor: url(http://files.poqbum.com/Files/Cursors/page1/blue_lightning.ani);} </style>
<table id="cursor" height="100" width="100" border="1">
<tbody>
<tr>
<td>&nbsp;</td>
</tr>
</tbody>
______________
.........................................................................
www.damn-gfx.de
.........................................................................
www.allgemeine-zone.de
.........................................................................
Beitrag01.03.2007 um 17:22 (UTC)    
Titel:

ja so hats ich auch schon aber das stellts so von alleine um -.-
Beitrag01.03.2007 um 17:23 (UTC)    
Titel:

Jede Tabelle muss seine eigene ID bekommen:

Zitat:
table#cursor1{cursor: url(http://files.poqbum.com/Files/Cursors/page1/3dc_3043.ani);} </style>
<table id="cursor1" height="100" width="100" border="1">
<tbody>
<tr>
<td>&nbsp;</td>
</tr>
</tbody>
</table>
<style type="text/css">





table#cursor2{cursor: url(http://files.poqbum.com/Files/Cursors/page1/blue_lightning.ani);} </style>
<table id="cursor2" height="100" width="100" border="1">
<tbody>
<tr>
<td>&nbsp;</td>
</tr>
</tbody>
</table>


Und so weiter
Beitrag01.03.2007 um 17:32 (UTC)    
Titel:

ok thx dein code oben ist falsch aber das was ich wissen wollte war dabei, habs selber schon fast rausgefunden blos ich hab die id nummer in der 2ten zeile vergessen, hehe, ich werde immer besser *g*

hab den falschen code oben ausgebessert und werd den richtigen hier mal rein posten das ihn andere auch benutzen können falls sie so was brauchen.

<style type="text/css">






table#cursor1{cursor: url(http://files.poqbum.com/Files/Cursors/page1/3dc_3043.ani);} </style>
<table id="cursor1" height="100" width="100" border="1">
<tbody>
<tr>
<td>&nbsp;</td>
</tr>
</tbody>
</table>
<style type="text/css">






table#cursor2{cursor: url(http://files.poqbum.com/Files/Cursors/page1/blue_lightning.ani);} </style>
<table id="cursor2" height="100" width="100" border="1">
<tbody>
<tr>
<td>&nbsp;</td>
</tr>
</tbody>
</table>

dann zu meiner 2ten frage wie mach ich die felder jetzt nebeneinander und nicht untereinander?
Beitrag01.03.2007 um 19:16 (UTC)    
Titel:

Habe das einfach aus Deinem Code herauskopiert und geändert Wink
Hab wohl was vergessen zu kopieren. Ganz korrekt wäre es so:

Zitat:

<style type="text/css">
<!--
table#cursor2{cursor: url(http://files.poqbum.com/Files/Cursors/page1/blue_lightning.ani);} </style>
table#cursor1{cursor: url(http://files.poqbum.com/Files/Cursors/page1/3dc_3043.ani);}
-->
</style>


<table id="cursor1" height="100" width="100" border="1">
<tbody>
<tr>
<td>&nbsp;</td>
</tr>
</tbody>
</table>
<table id="cursor2" height="100" width="100" border="1">
<tbody>
<tr>
<td>&nbsp;</td>
</tr>
</tbody>
</table>


Die beiden Zeichenfolgen:

Zitat:
<!--

und
Zitat:
-->

sind zum Verstecken des Codes für ältere Browser, da die sonst alles zerschießen könnten. Und man schreibt alle Style-Anweisungen in einem Style-Sheet Wink
Beitrag01.03.2007 um 20:36 (UTC)    
Titel:

Zitat:
<style type="text/css">
<!--
table#cursor2{cursor: url(http://files.poqbum.com/Files/Cursors/page1/blue_lightning.ani);}
table#cursor1{cursor: url(http://files.poqbum.com/Files/Cursors/page1/3dc_3043.ani);}
-->
</style>


<table id="cursor1" height="100" width="100" border="1">
<tbody>
<tr>
<td>&nbsp;</td>
</tr>
</tbody>
</table>
<table id="cursor2" height="100" width="100" border="1">
<tbody>
<tr>
<td>&nbsp;</td>
</tr>
</tbody>
</table>


hattest ein style zu viel drin hab den code ausgebessert und hier gleich wieder richtig eingefügt!! danke somit ist das für mich eine weite arbeitserleichterung da dies hier übersichtlicher wird.

Aber meine 2te Frage ist hier immer noch nicht beantwortet. Wie bekomm ich jetzt die 2 felder nebeneinander anstatt untereinander???

http://the-best-world.de.tl/Mauszeiger.htm

also das is etz mal ein link davon wie des überhaupt aussieht das ihr mal ein bild davon bekommt, was ich meine mit den feldern ^^

Die seite hab ich gerade erst vor 2 tagen eröffnet also bitte nicht meckern das sie noch so leer ist. thx
Beitrag01.03.2007 um 20:40 (UTC)    
Titel:

So

Zitat:
<table border="1" id="table1">
<tr>
<td>
<table id="cursor1" height="100" width="100" border="1">
<tbody>
<tr>
<td>&nbsp;</td>
</tr>
</tbody>
</table>
</td>
<td>
<table id="cursor2" height="100" width="100" border="1">
<tbody>
<tr>
<td>&nbsp;</td>
</tr>
</tbody>
</table>
</td>
</tr>
</table>
Beitrag01.03.2007 um 21:12 (UTC)    
Titel:

ok hat geklappt
könnt euch ja das ergebnis auf
http://the-best-world.de.tl/Mauszeiger.htm ja anschauen ^^
das is mal ein großes lob an die Genies

extrem html tabelling lol

muss mir etz am schluss mal genau anschaun was du jetzt noch für zeilen dazu gemach hast ^^

Thema closed
pls


Zuletzt bearbeitet von the-best-world am 01.03.2007, 22:13, insgesamt einmal bearbeitet
Beiträge der letzten Zeit anzeigen:   


Powered by phpBB © 2001, 2005 phpBB Group
Deutsche Übersetzung von phpBB.de