ein kleine anmerkung zur website / forum:
1. in der hauptnavigation finde ich es die verlinkung in kombination mit dem background-highlight etwas unpraktisch. (beispiel: klickt man neben den text passiert nichts, weil nur der text verlinkt ist.)
kann man leicht im css ändern, derzeit sieht es ja so aus:
#site-menu ul li {
display: inline;
text-align: center;
font-size: 13px;
line-height: 26px;
padding: 0 12px;
font-weight: bold;
color: #ffffff;
display: block;
float: right;
}
#site-menu ul li a,
#site-menu ul li.selected {
color: #ffffff;
text-decoration: none;
}
und so ist es benutzungsfreundlicher:
#site-menu ul li {
display: inline;
text-align: center;
font-size: 13px;
line-height: 26px;
font-weight: bold;
color: #ffffff;
display: block;
float: right;
}
#site-menu ul li a,
#site-menu ul li.selected {
display: block;
padding: 0 12px;
color: #ffffff;
text-decoration: none;
}
2. ich finde die seiten-links im forum nicht gerade benutzungsfreundlich, da oft nur ein zeichen verlinkt ist. mein vorschlag: den folgenden code im css anhängen
#ll #body #posts thead tr th a,
#ll #body #posts thead tr th strong,
#ll #body #posts tfoot tr th a,
#ll #body #posts tfoot tr th strong {
display: block;
float: left;
padding: 3px 8px;
}
#ll #body #posts thead tr th a:hover,
#ll #body #posts tfoot tr th a:hover {
background-color: #aaa;
}
#ll #body #posts thead tr th strong,
#ll #body #posts tfoot tr th strong {
background-color: #1793d1;
color: white;
font-weight: bold;
text-decoration: none;
}
und noch was zum lesen:
http://www.braekling.de/2009/10/31/fitts-law-buttons-optimal-einsetzen/