![]() | |
![]() |
| | Thread Tools | Display Modes |
#1
| |||
| |||
|
#2
| |||
| |||
|
|
In alt.html.critique Ron Eggler said: why does this code work with IE but doesn't with firefox? ![]() http://www.rideon.ch/content.php?sec...ter&titleimg=0 http://validator.w3.org/check?uri=ht...1+Transitional ok, |
((
#3
| |||
| |||
|
|
In alt.html.critique Ron Eggler @ Notebook said: The mentioned element is not allowed to appear in the context in which you've placed it; the other mentioned elements are the only ones that are both allowed there and can contain the element mentioned. This might mean that you need a containing element, or possibly that you've forgotten to close a previous element. One possible cause for this message is that you have attempted to put a block-level element (such as "<p>" or "<table>") inside an inline element (such as "<a>", "<span>", or "<font>"). but i don't understand what exactly i have to change to fix the error... ((form> is a block level element, you cant put them inside inline elements. you have your <form> inside a <span>. <span> is an inline element. delete <span class="text"> and the closing </span your markup and css is a real mess, i would start again. .footer { font-family: Verdana, Arial, Helvetica, sans-serif; this should be on the <body> and don't use verdana. body{font-family: Arial, Helvetica, sans-serif;} Why you should avoid the Verdana font http://www.xs4all.nl/~sbpoley/webmatters/verdana.html font-size: 10px; unreadably small and IE users cant resize it. use %. 100% is the visitors default size. .footer a{ font-family: Verdana, Arial, Helvetica, sans-serif; no need to specify the fonts again font-size: 10px; use % text-decoration:underline;; the default for <a> no need to use it. .footer a:hover{ font-family: Verdana, Arial, Helvetica, sans-serif; no need to specify the font again font-size: 10px; use % text-decoration:underline;; the default for <a> no need to use it. etc etc etc |

may anyone help me a bit?!?
#4
| |||
| |||
|
|
In alt.html.critique Ron Eggler said: i don't understand what do i have to do... may anyone help me abit?!? Thanks! as i said in my previous post: form> is a block level element, you cant put them inside inline elements. you have your <form> inside a <span>. <span> is an inline element. delete <span class="text"> and the closing </span oh shit, sorry, i posted the false error-msg... |
![]() |
| Thread Tools | |
| Display Modes | |
| |