May 10
14
Rachmaninov had big Hands
Share This
|
12% | Comments off
Great little music show. Make sure you watch all – have a great weekend
This page is brought to you by Blogvaria (http://blog.evaria.com).
To obtain more information, ask questions and interact please visit our website.
May 10
14
Share This
|
12% | Comments off
Great little music show. Make sure you watch all – have a great weekend
May 10
03
Share This
|
14% | Comments off
I’m sure you have noticed that when you click a hyper link, and especially a linked image, a dotted border appears around it. Have a look at CSSplay for more examples and proper CSS code fix related to this.
For those of us using the jQuery Java framework the “solution” is incredibly simple. Just call the following function in your header and all dotted borders are gone:
jQuery("a").focus(function(){this.blur()});
Using CSS it’s almost as simple (at least for all browsers except IE):
a:focus {outline-style: none;}
Using basic JavaScript the following should do the trick:
for(var i=0;elm=document.links[i];i++)
{
elm.onfocus=function(){elm.blur();};
}
Some would probably say that this shouldn’t be done because the active/focus dotted border is there to show visitors who are using tabbed link selection which link is selected. But when we are using CSS we can style our own active/focus state and in this case the dotted border is not so necessary. I’ll appreciate your take on this as I’ve debated this “issue” with some of my clients on several occasions.
2012 | Jan | Feb | Mar | Apr | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec
2011 | Jan | Feb | Mar | Apr | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec
2010 | Jan | Feb | Mar | Apr | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec
2009 | Jan | Feb | Mar | Apr | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec
2008 | Jan | Feb | Mar | Apr | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec
2007 | Jan | Feb | Mar | Apr | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec
2006 | Jan | Feb | Mar | Apr | May | Jun | Jul | Aug | Sep | Oct | Nov | Dec
Evaria.com care about accessiblity and content quality. Contact us to share your comments and concerns. The Blogvaria theme conforms to W3C.org-validated XHTML 1.1 and CSS 2.0 standards. We also recommend updating your Web browser to the very latest version available (We strongly recommends the free, open-source Mozilla Firefox). Please report any technical problems you encounter. Site design & programming by Evaria.com Web Development.