From owner-freebsd-www@FreeBSD.ORG Sun Oct 9 14:44:55 2005 Return-Path: X-Original-To: freebsd-www@freebsd.org Delivered-To: freebsd-www@freebsd.org Received: from mx1.FreeBSD.org (mx1.freebsd.org [216.136.204.125]) by hub.freebsd.org (Postfix) with ESMTP id AF4FE16A41F for ; Sun, 9 Oct 2005 14:44:55 +0000 (GMT) (envelope-from markus@trippelsdorf.de) Received: from blue-ld-033.synserver.de (blue-ld-033.synserver.de [217.119.50.236]) by mx1.FreeBSD.org (Postfix) with SMTP id EBEC943D48 for ; Sun, 9 Oct 2005 14:44:54 +0000 (GMT) (envelope-from markus@trippelsdorf.de) Received: (qmail 6066 invoked by uid 0); 9 Oct 2005 14:44:52 -0000 X-SynServer-RemoteDnsName: port-212-202-34-162.dynamic.qsc.de X-SynServer-AuthUser: markus@trippelsdorf.de Received: from port-212-202-34-162.dynamic.qsc.de (HELO bsd.trippelsdorf.de) (212.202.34.162) by mx-05.synserver.de with SMTP; 9 Oct 2005 14:44:51 -0000 Date: Sun, 9 Oct 2005 16:44:51 +0200 From: Markus Trippelsdorf To: freebsd-www@freebsd.org Message-ID: <20051009144451.GA1174@bsd.trippelsdorf.de> Mime-Version: 1.0 Content-Type: multipart/mixed; boundary="EeQfGwPcQSOJBaQU" Content-Disposition: inline User-Agent: Mutt/1.5.11 Subject: Link Styles X-BeenThere: freebsd-www@freebsd.org X-Mailman-Version: 2.1.5 Precedence: list List-Id: FreeBSD Project Webmasters List-Unsubscribe: , List-Archive: List-Post: List-Help: List-Subscribe: , X-List-Received-Date: Sun, 09 Oct 2005 14:44:55 -0000 --EeQfGwPcQSOJBaQU Content-Type: text/plain; charset=us-ascii Content-Disposition: inline Links on the newly designed homepage are always underlined. This is a typographical nightmare. It also ignores the preferences which the user has made in his or her browser. So please consider the attached patch: The modified style sheet will still underline links for users you like them, but produce a more readable result for users who switched them off in their browsers. --EeQfGwPcQSOJBaQU Content-Type: text/plain; charset=us-ascii Content-Disposition: attachment; filename="text.css_patch" --- text_old.css Sun Oct 9 16:15:02 2005 +++ text.css Sun Oct 9 16:26:33 2005 @@ -95,15 +95,15 @@ /* Link Styles */ -a:link { color:#990000; text-decoration: underline; } -a:visited { color:#990000; text-decoration: underline; } -a:active { color:#990000; text-decoration: underline; } -a:hover { color:#000000; text-decoration: underline; } +a:link { color:#990000; } +a:visited { color:#990000; } +a:active { color:#990000; } +a:hover { color:#000000; } -#FOOTER a:link, #footer a:link { color:#666; text-decoration: underline; } -#FOOTER a:visited, #footer a:visited { color:#666; text-decoration: underline; } -#FOOTER a:active, #footer a:active { color:#666; text-decoration: underline; } -#FOOTER a:hover, #footer a:hover { color:#000000; text-decoration: underline; } +#FOOTER a:link, #footer a:link { color:#666; } +#FOOTER a:visited, #footer a:visited { color:#666; } +#FOOTER a:active, #footer a:active { color:#666; } +#FOOTER a:hover, #footer a:hover { color:#000000; } #FRONTNEMSCONTAINER h2, #frontnemscontainer h2 { margin: 0; --EeQfGwPcQSOJBaQU--