my problem is the following:
This is a part of my HTML-Code:
<form method='GET' name='auftragaufgeben' action='AuftragAufgeben'> <input type='submit' name='auftragaufgeben2' value='Auftrag aufgeben'> <input type='hidden' name='logged' value='logged'> </form> No i want a design for the button with the help of css. This is the code:
a.auftragaufgeben { display: block; background-image: url(AuftragAufgeben.png); width: 467px; height: 104px; } a.auftragaufgeben:hover { background-image: url(AuftragAufgeben_Hover.png); } I found that the declaration of the class in the button tag should work, for example this:
<form method='GET' name='auftragaufgeben' action='AuftragAufgeben'> <input class="auftragaufgeben" type='submit' name='auftragaufgeben2' value='Auftrag aufgeben'> <input type='hidden' name='logged' value='logged'> </form> But this doesn't change anything. How can change the layout of the button to the picture i declared in the CSS part? Or is there another way to start the form when i click the picture?
Kind regards