Hi,
That's simply the effect of :focus to enable keyboard navigation. It has nothing special to do with that layout and would be apparent on a page like this also:
Code:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Strict//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-strict.dtd">
<html xmlns="http://www.w3.org/1999/xhtml">
<head>
<meta http-equiv="Content-Type" content="text/html; charset=utf-8" />
<title>Untitled Document</title>
<style>
a.test:focus {
background:red;
}
</style>
</head>
<body>
<ul>
<li><a href="#">test</a></li>
<li><a href="#">test</a></li>
<li><a href="#">test</a></li>
<li><a class="test" href="www.google.com">Click this one to test</a></li>
<li><a href="#">test</a></li>
<li><a href="#">test</a></li>
<li><a href="#">test</a></li>
</ul>
</body>
</html>
You would have to remove the :focus pseudo class to make it go away which would be a shame for keyboard users.
I suppose you could set some JS up to clear the focus before the page navigates to the new link.
e.g.
Code:
<li><a class="test" onclick="this.blur();return true" href="test3.htm">Click here test 3</a></li>
Obviously you would want to do that unobtrusively which is beyond my skills and a question for the javascript forum
Bookmarks