Bonjour

J'ai deux pages .shtml comportant un formulaire. Ils sont à une hauteur différente, est-il possible de réduire au maximum, le code suivant:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
10
11
12
#moteur-de-recherche {
width:125px;
height:109px;
position:fixed;
margin-top:337px;
}
#moteur-de-recherche-bis {
width:125px;
height:109px;
position:fixed;
margin-top:260px;
}
Une autre petite question, concernant deux span dont la configuration des liens est identiques:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
1
2
3
4
5
6
7
8
9
span.en-savoir-plus a:link    { color:#990000; text-decoration:underline; background:#f3f3f3; }
span.en-savoir-plus a:visited { color:#990000; text-decoration:underline; background:#f3f3f3; }
span.en-savoir-plus a:hover   { color:black;   text-decoration:underline; background:#f3f3f3; }
span.en-savoir-plus a:active  { color:#990000; text-decoration:underline; background:#f3f3f3; }
 
span.telecharger a:link    { color:#990000; text-decoration:underline; background:#f3f3f3; }
span.telecharger a:visited { color:#990000; text-decoration:underline; background:#f3f3f3; }
span.telecharger a:hover   { color:black;   text-decoration:underline; background:#f3f3f3; }
span.telecharger a:active  { color:#990000; text-decoration:underline; background:#f3f3f3; }
J'ai tenté un:
Code : Sélectionner tout - Visualiser dans une fenêtre à part
span.telecharger, span.en-savoir-plus
Mais pas de bons résultats

Qu'en pensez-vous ?