. When I move my mouse over the hyperlinks, the <div>s appear to be shrinking a little.
http://81.69.108.105/?start
No time to test, but at a quick glance I'd say your problem stems from defining no border for links, and then defining a border-bottom for a:hover. This new border might be causing the layout reflow...
I'd change
a, a:active, a:visited {
border: 0;
...
}to
a, a:active, a:visited {
border: 1px #fff solid;
...
}See if that helps.
-- Patrick H. Lauke _____________________________________________________ re�dux (adj.): brought back; returned. used postpositively [latin : re-, re- + dux, leader; see duke.] www.splintered.co.uk | www.photographia.co.uk http://redux.deviantart.com
****************************************************** The discussion list for http://webstandardsgroup.org/
See http://webstandardsgroup.org/mail/guidelines.cfm for some hints on posting to the list & getting help ******************************************************
