Displaying 1 result from an estimated 1 matches for "winehq_menu".
2009 Jul 28
1
WinHQ.org website - CSS preloading
...section would make the site even better as it would no longer mean the hover images would need to be loaded when the mouse is hovered over them.
I found a solution here:
http://www.maratz.com/blog/archives/2005/06/22/preload-hover-images-in-css/
So, currently the CSS is e.g. as follows:
Code:
ul.winehq_menu li.info { background-image: url('images/main_info.png'); background-repeat: no-repeat }
ul.winehq_menu li.info:hover { background-image: url('images/main_info_s.png'); background-repeat: no-repeat }
And instead doing something like:
Code:
ul.winehq_menu li.info...