Advanced CSS Menu Trick
December 22, 2007 @ 6:25 pm | Comments (166) | by Ross Johnson
CSS really opens the doors to a lot of powerful and rich opportunities. It is funny how such minor things can create a whole new look, feel, and effect of a site. The beauty of CSS really is that it gives you power, but not too much power. It is not a tool like flash that really invites you to run away and take things too far.
We are now coming to a point where the browsers are supporting a lot of new features, giving us more opportunities to take advantage of previously unused pseudo elements. This example, “advanced css menu tricks” will work perfectly in any modern browser, yet still be fully functional in your older version of IE as well.
The goal of the demo - example
What we want to do here, is instead of simply altering the state of the navigation item the user is currently rolling over, we want to alter the non navigation items as well. This will help focus the users attention on the item they have selected on, and create a new look and feel for the site overall. Want to see it in action? Look at my demo page before we start.
The first step - CSS roll overs
The first step of the game is building some CSS roll overs. We want to keep things accessible so I have opted to use an IR technique. Essentially we create an image that has both the static, active and rolled over state all lined up next to each other. We then set the image as the background of th element, but the width is only wide enough for one state of the image (so if the button image is 600px wide with all three states, we make the navigation element as a 200px wide button). We then set the text indent really high and overflow to hidden so that it pushes the text out of the box. Then we only see the image even though there is still HTML text on the page for search engines and accessibility.
Image Examples
Menu Before
Button Sliced, fixed and hover states

The CSS
#main_nav { list-style: none; margin: 0; padding: 0; }
#main_nav li { float: left; }
#main_nav li a { text-indent: -999999px; overflow: hidden; display: block; height: 72px; }
#home { background: url(../images/navigation/home.gif); width: 103px; }
#home.active { background: url../images/navigation/home.gif) -103px 0; }
The HTML
<ul id="main_nav">
<li><a href="index.html" accesskey="3" id="home" title="Home Page">Home Page</a></li>
<li><a href="about-us.html" accesskey="4" id="about" title="About 3.7 Designs">About Us</a></li>
<li><a href="web-design.html" accesskey="5" id="webdesign" class="active" title="Web Design and Development">Web Design</a></li>
<li><a href="graphic-design.html" accesskey="6" title="Graphic Design and Marketing" id="graphicdesign">Graphic Designs</a></li>
<li><a href="keyword-optimization/michigan-seo.html" accesskey="7" title="Search Engine Optimization and Marketing" id="seo">Search Engine Optimization SEO</a></li>
<li><a href="ann-arbor-marketing.html" accesskey="8" id="contact" title="Contact Us">Contact Us</a></li>
</ul>
Then when we want to change the state of the button we simply adjust the background position to be -200px (or the size of the button itself) pulling the different state of the button into view. The reason for doing it this way then simply swapping images, is the latter method tends to create flickering in some browsers.
At this point most people have it set so that if an item is hovered on (#home for example) it switches the background-image position. This creates the standard run of the mill css roll over. However we want to do something else, something more unique. We want to have every roll over item on the menu change except the one you are hovering on. This requires a little css trickery!
IE7, Safari, Firefox, all support the :hover pseudo selectors so let’s take advantage of that. What we need to do is have all the menu items change the background-image position when the menu item itself has been rolled over. Then the item that is hovered on is set to have the background-position: 0px to keep it from moving when the rest do.
The CSS
#main_nav:hover li a#webdesign { background-position: -280px; }
#main_nav:hover li a#home { background-position: -206px; }
#main_nav:hover li a#graphicdesign { background-position: -340px; }
#main_nav:hover li a#contact { background-position: -232px; }
#main_nav:hover li a#about { background-position: -242px; }
#main_nav:hover li a#seo { background-position: -540px;
This pulls each menu item’s background position back when any of #main_nav has been hovered on. Now all we have to do is set the hovered items to have a background-position of 0
#home { background: url(../images/navigation/home.gif); width: 103px; }
#home:hover { background: url(../images/navigation/home.gif) 0 0 !important; }
The HTML is all set, already coded! Now you are ready to rock and roll except for that pesky IE5.5+. Luckily there has been a behavior file developed called cssHover.htc that will fix this issue. Simply download it, and copy and paste the following code into an IE5+ specific style sheet.
body {
behavior: url("/css/csshover.htc");
}
The Whole Shabang
CSS
#main_nav { list-style: none; margin: 0; padding: 0; }
#main_nav li { float: left; }
#main_nav li a { text-indent: -999999px; overflow: hidden; display: block; height: 72px; }
#home { background: url(../images/navigation/home.gif); width: 103px; }
#home:hover { background: url(../images/navigation/home.gif) 0 0 !important; }
#home.active { background: url../images/navigation/home.gif) -103px 0; }
#main_nav:hover li a#home { background-position: -206px; }
HTML
<ul id="main_nav">
<li><a href="index.html" accesskey="3" id="home" title="Home Page">Home Page</a></li>
<li><a href="about-us.html" accesskey="4" id="about" title="About 3.7 Designs">About Us</a></li>
<li><a href="web-design.html" accesskey="5" id="webdesign" class="active" title="Web Design and Development">Web Design</a></li>
<li><a href="graphic-design.html" accesskey="6" title="Graphic Design and Marketing" id="graphicdesign">Graphic Designs</a></li>
<li><a href="keyword-optimization/michigan-seo.html" accesskey="7" title="Search Engine Optimization and Marketing" id="seo">Search Engine Optimization SEO</a></li>
<li><a href="ann-arbor-marketing.html" accesskey="8" id="contact" title="Contact Us">Contact Us</a></li>
</ul>
« Web Design and Marketing Solutions for Business Websites - Review Optimized Press Releases for Time Sensitive Marketing »




COMMENT kre8ive » Advanced CSS Menu Trick
[...] Check it out! While looking through the blogosphere we stumbled on an interesting post today.Here’s a quick excerpt CSS really opens the doors to a lot of powerful and rich opportunities. It is funny how such minor things can create a whole new look, feel, and effect of a site. The beauty of CSS really is that it gives you power, but not too much power. It is not a tool like flash that really invites you to run away and take things too far. We are now coming to a point where the browsers are supporting a lot of new features, giving us more opportunities to take advantage of previously unused pseudo element [...]
Posted on 12/22 6:35pm
COMMENT Andrei Gonzales
Clever.
Another way to achieve this is by using Apple.Com’s menu technique (multiple states on a single image - controlled by positions).
Posted on 12/26 4:28pm
COMMENT Fatih Hayrioğlu’nun not defteri » 31 Aralık 2007 Web’den Seçme Haberler
[...] Güzel bir css menü örneği. Bağlantı [...]
Posted on 12/31 5:25am
COMMENT Peter
That is a good technique. I would like to point out to you that your site slightly bends (not break;)) when viewed in Opera. The grey background and page itself seem to extend as far as if the content were in a horizontal line.
Posted on 01/01 12:38am
COMMENT Jermayn Parker
I like this…
Something different and a nice option that can be used for all browsers and look the same.
Well done. I will definitely have to use something like this.
Posted on 01/02 12:10am
COMMENT 7 Advanced CSS Menu For Your Next Design
[...] 2) Advanced CSS Menu Trick [...]
Posted on 01/02 4:52pm
COMMENT 7 Menu css da usare nei propri siti web | Lordmarin
[...] 2) Advanced CSS Menu Trick [...]
Posted on 01/03 10:14am
COMMENT CSS ile yatay menü örnekleri - Günlük Haftalık Aylık
[...] Advanced CSS Menu Trick [...]
Posted on 01/06 4:17am
COMMENT Menú horizontal muy interesante
[...] que utilizando técnicas CSS desarrolla un menú horizontal muy curioso, lo tenemos en Advanced CSS Menu Trick, en donde te explica los códigos empleados y el CSS, para que puedas realizar dicho menú, [...]
Posted on 01/07 8:35am
COMMENT napyfab:blog» Blog Archive » links for 2008-01-07
[...] » Advanced CSS Menu Trick - Web Design Marketing Podcast & Blog (tags: css menu navigation tutorial rollover webdesign web development advanced design hover) [...]
Posted on 01/07 7:28pm
COMMENT Jon
thanks
Posted on 01/10 4:35am
COMMENT psilos
Whenever I try to load the example page, my FF 2.0.0.11 breaks.
Just to know.
Posted on 01/11 8:28am
COMMENT 7个强大超酷的CSS导航菜单 | 帕兰卓一得
[...] 2) 先进的CSS导航菜单技术 [...]
Posted on 01/17 1:51am
COMMENT Best Of January 2008 | Best of the Month | Smashing Magazine
[...] Advanced CSS Menu TrickWhat we want to do here, is instead of simply altering the state of the navigation item the user is currently rolling over, we want to alter the non navigation items as well. [...]
Posted on 01/25 6:12pm
COMMENT Best Of January 2008 | Best of the Month | Smashing Magazine
[...] Advanced CSS Menu TrickWhat we want to do here, is instead of simply altering the state of the navigation item the user is currently rolling over, we want to alter the non navigation items as well. [...]
Posted on 01/25 6:12pm
COMMENT Best Of January 2008 | Blog
[...] Advanced CSS Menu TrickWhat we want to do here, is instead of simply altering the state of the navigation item the user is currently rolling over, we want to alter the non navigation items as well. [...]
Posted on 01/25 7:21pm
COMMENT one web designer
ADVANCED WOULD BE MAKING IT WORK IN IE6
than you’ll see some trafic
Posted on 01/26 9:05pm
COMMENT Ross
It does work in IE6 with the behavior file mentioned at the end of the article.
Posted on 01/26 9:26pm
COMMENT Advanced CSS Navigation Menu Trick
[...] out the advanced CSS navigation menu first before read the post! Advanced CSS Menu Trick is a new concept of navigation menu solution for modern browsers. Unlike any hovered on menu that [...]
Posted on 01/26 10:22pm
COMMENT purrl.net |** urls that purr **|
This is one of the web’s most interesting stories on Sun 27th Jan 2008…
These are the web’s most talked about URLs on Sun 27th Jan 2008. The current winner is …..
Posted on 01/26 11:05pm
COMMENT Usenet Newsgroups: Anachronistic Service or Useful Communication Tool?
[...] 2) Advanced CSS Menu Trick [...]
Posted on 01/27 3:34pm
COMMENT 101 CSS Techniques Of All Time- Part 1
[...] 2) Advanced CSS Menu Trick [...]
Posted on 01/27 5:02pm
COMMENT links for 2008-01-28 | Funny Stuff is all around
[...] » Advanced CSS Menu Trick - Web Design Marketing Podcast & Blog (tags: css menu navigation tutorial webdesign hover rollover) [...]
Posted on 01/27 8:34pm
COMMENT 7 Advanced CSS Menu, A Great Roundup!!
[...] 2) Advanced CSS Menu Trick [...]
Posted on 01/28 12:31am
COMMENT Blog | exand.net » Мои закладки в Январе
[...] Advanced CSS Menu Trick [...]
Posted on 01/30 11:11am
COMMENT Foxinni - Wordpress Designer
Very nice. Clean, easy, good looking. Great post!
Posted on 01/30 2:49pm
COMMENT sbh* - Ma.gnolia: Recently Ma.rk’d
[...] how and when to use them.”Rating: ★ ★ ★ ★ ★ Tags: web, design» Advanced CSS Menu Trick - Web Design Marketing Podcast & BlogCool i’l blurred out menu that creates good focus. I like the idea.Rating: ★ ★ [...]
Posted on 01/30 8:51pm
COMMENT Quick Accessibility Testing
[...] 2) Advanced CSS Menu Trick [...]
Posted on 01/30 10:04pm
COMMENT UK Government fails to take IPv6 implementation seriously
[...] 2) Advanced CSS Menu Trick [...]
Posted on 01/31 5:00am
COMMENT Upgrading to Rails 2.0. A Recipe
[...] 2) Advanced CSS Menu Trick [...]
Posted on 02/02 9:00am
COMMENT News » Best Of January 2008
[...] Advanced CSS Menu Trick What we want to do here, is instead of simply altering the state of the navigation item the user is currently rolling over, we want to alter the non navigation items as well. [...]
Posted on 02/04 10:12pm
COMMENT dock men yapm_?_ - vBulletinTurk.org | Webmaster Forumu
[...] Advanced CSS Menu Trick [...]
Posted on 02/16 12:26pm
COMMENT blog.bouctoubou.com » Archive du blog » Bouctoubou’s links Graphics #2
[...] exemple de menu en css où j’ai bien aimé l’effet de mise en avant du rollover avec un effet de flou sur le [...]
Posted on 02/19 9:25am
COMMENT Powerful CSS-Techniques For Effective Coding | How-To | Smashing Magazine
[...] Advanced CSS Menu TrickWhat we want to do here, is instead of simply altering the state of the navigation item the user is [...]
Posted on 02/21 1:26pm
COMMENT Powerful CSS-Techniques For Effective Coding | Blog
[...] Advanced CSS Menu TrickWhat we want to do here, is instead of simply altering the state of the navigation item the user is [...]
Posted on 02/21 3:26pm
COMMENT 50种强大的CSS技术 | 帕兰映像
[...] Advanced CSS Menu Trick [...]
Posted on 02/21 8:27pm
COMMENT مدونة الدكتور نت » أرشيف المدونة » مواقع ووصلات (فبراير -2008)
[...] قائمة متقدمة بواسطةcss [...]
Posted on 02/21 8:56pm
COMMENT Powerful CSS-Techniques For Effective Coding
[...] robust copyright information without defacing your own work. 8. Particletree Category List 9. Advanced CSS Menu Trick What we want to do here, is instead of simply altering the state of the navigation item the user is [...]
Posted on 02/23 6:58am
COMMENT Tips Trick, Software dan Aplikasi Review » Blog Archive » Powerfull CSS Teknik
[...] Advanced CSS Menu Trick [...]
Posted on 02/23 10:28am
COMMENT Jarek
Good CSS Menu Trick.
Posted on 02/23 8:49pm
COMMENT jarald
Hi
this example are very nice.
i need one more help.
how to give sub menus????????
jarald
Posted on 02/25 8:32am
COMMENT David Jacques-Louis
Really creative.
Posted on 02/27 1:53pm
COMMENT Skylog » Blog Archive » links for 2008-02-28
[...] Advanced CSS Menu Trick (tags: css) [...]
Posted on 02/28 2:18am
COMMENT Un par de trucos avanzados CSS « el50
[...] el cursor sobre él, es mejor que lo veas en “vivo“. Acá el artículo para recrearlo Advanced CSS Menu Trick. Posted by Ulises E. Filed in CSS, Diseño Web, [...]
Posted on 02/28 4:19pm
COMMENT AllSprite | 关注互联网发展,为访客创造价值! » Blog Archive » 50种强大的CSS技术
[...] Advanced CSS Menu Trick [...]
Posted on 02/28 11:07pm
COMMENT Powerful CSS-Techniques For Effective Coding
[...] Advanced CSS Menu TrickWhat we want to do here, is instead of simply altering the state of the navigation item the user is [...]
Posted on 02/29 10:32am
COMMENT St4lkr
Why this technique doesn’t work under a joomla site? Look here: (http://www.eliacomes.com)
Posted on 03/03 8:08am
COMMENT Advanced CSS Navigation Menu Trick | GreatSo.com
[...] new features, giving us more opportunities to take advantage of previously unused pseudo elements. Advanced Css Menu Tricks is instead of simply altering the state of the navigation item the user is currently rolling over, [...]
Posted on 03/03 7:00pm
COMMENT Truco CSS para Menu de Navegación | Blogultura.com
[...] 3point7designsVía: WebAppers Escrito el 04.03.08 @ 5:58 pm | Categoria: CSS, Diseño Web | | [...]
Posted on 03/04 7:58pm
COMMENT Kolz Blog » Blog Archive » Powerful CSS-Techniques For Effective Coding
[...] robust copyright information without defacing your own work. 8. Particletree Category List 9. Advanced CSS Menu Trick What we want to do here, is instead of simply altering the state of the navigation item the user is [...]
Posted on 03/13 7:15pm
COMMENT jujubeans » Blog Archive » Gotta brush up on the scripting
[...] today, I found this which points out the behavior whatever:hover (somewhat like the png fix). I remember hearing about [...]
Posted on 03/16 2:11am
COMMENT CSS Concept » Blog Archive » Techniques for a Professional CSS
[...] Advanced CSS Menu Trick [...]
Posted on 03/21 2:21pm
COMMENT bleki
Brillant idea. But in code is error which made me mad. I spend a half day to before it works properly. In line:
[code]
#home.active { background: url../images/navigation/home.gif) -103px 0; }
[/code]
you forgott about “(” before path to image.
Posted on 04/03 2:16pm
COMMENT nihal koçan
malesef kod da bazı eksiklikler var sanırım ben yapamadım bunu indirmemizin bir yolu varmı?????
Helpppp….!!!
Posted on 04/04 4:24am
COMMENT Web Design Manager
May be you are right with all these opportunities of CSS. I will test them and give my opinion after.
Posted on 04/09 8:07am
COMMENT Sharepoint 2007 from an interface developer’s view
[...] 2) Advanced CSS Menu Trick [...]
Posted on 04/09 12:02pm
COMMENT Web Design » » Advanced CSS Menu Trick - Web Design Marketing Podcast & Blog
[...] Online Money Making Forum | HYIP | Autosurf | Forex | Investments wrote an interesting post today on » Advanced CSS Menu Trick - Web Design Marketing Podcast & BlogHere’s a quick excerpt [...]
Posted on 04/13 8:17pm
COMMENT 傻仔仔 » 網誌彙整 » 50種強大的CSS技術
[...] Advanced CSS Menu Trick [...]
Posted on 04/21 6:59am
COMMENT dennis
gotta try this and see if it works. thanks.
Posted on 05/02 4:27pm
COMMENT imran
intresting…
Posted on 05/04 12:04am
COMMENT prefabrik
very nice comment and menu thanks .
Posted on 05/13 4:02am
COMMENT prefabrik
very nice comment and menu thanks .
Posted on 05/13 4:02am
COMMENT Joshmah
Good Job.
It’s so nice.
Posted on 05/13 4:16am
COMMENT Sesli Chat
good man nice work….
Posted on 05/16 11:23pm
COMMENT sesli sohbet
I love this man…
Posted on 05/16 11:24pm
COMMENT 尹飞
呵呵 只有看代码能懂一些
Posted on 05/25 10:06pm
COMMENT website design
Very good i can say
Posted on 05/26 11:42am
COMMENT Powerful CSS-Techniques For Effective Coding | Studio 646
[...] Advanced CSS Menu Trick What we want to do here, is instead of simply altering the state of the navigation item the user is [...]
Posted on 05/27 1:28pm
COMMENT bdITjobs.com : : Blog » Blog Archive » Powerful CSS-Techniques For Effective Coding
[...] Advanced CSS Menu Trick What we want to do here, is instead of simply altering the state of the navigation item the user is [...]
Posted on 05/27 3:06pm
COMMENT Flying Code — Flying over the code… » Articles » Créer un menu avec rollover avancé
[...] d’Internet Explorer, il faut procéder à quelques modifications, comme indiqué dans cet article (désolé, c’est en [...]
Posted on 06/02 12:04pm
COMMENT Licheng
Hey dude,
Just wanna say a word of thanks for making my day. This solved my chunky navigation javascript problem over at my site’s navigation bar. Neat trick!
Posted on 06/06 4:54am
COMMENT 50种强大的CSS技术 | CodeLog
[...] Advanced CSS Menu Trick [...]
Posted on 06/06 5:14am
COMMENT Powerful CSS-Techniques For Effective Coding | adtech ile reklam 2.0 dönemi başlıyor ve Trkycmhrytllbtpydrklcktr r10.net seo yarışması
[...] Advanced CSS Menu Trick What we want to do here, is instead of simply altering the state of the navigation item the user is [...]
Posted on 06/07 5:33pm
COMMENT Ethan
Good simple css menu script and trick. I like it a lot.
Posted on 06/08 7:29am
COMMENT Ethan
Great CSS Menu trick, i may even used somewhere on my site! I think ill try and post a css drop down to this and post it here maybe…
Posted on 06/08 7:31am
COMMENT tele
nice job!
Posted on 06/10 4:33am
COMMENT roger
crashes my firefox too, shame cause it looks great five seconds before the crash
Posted on 06/11 9:12am
COMMENT kral oyun
thanks for this great codes
Posted on 06/13 11:06am
COMMENT youtube gir
perfect, thanks
Posted on 06/13 11:10am
COMMENT sesli chat
thanx good
Posted on 06/13 8:38pm
COMMENT elvis
Whenever I go to example, my firefox crushes and close it.
Is anything wrong with me??
Posted on 06/14 5:34am
COMMENT sesli sohbet
thankss..
Posted on 06/14 8:49am
COMMENT youtube gir
perfect idea thanks
Posted on 06/14 10:11am
COMMENT Umair’s Blog » Blog Archive » Super Powerful CSS - Techniques For Effective Coding
[...] Advanced CSS Menu Trick What we want to do here, is instead of simply altering the state of the navigation item the user is [...]
Posted on 06/16 10:46am
COMMENT Dış Cephe
oh very amazing. my friend you are very good.dış cephe
Posted on 06/28 12:09pm
COMMENT Powerful CSS Techniques For Effective Coding | Udesign's Blog
[...] 9. Advanced CSS Menu Trick [...]
Posted on 07/02 3:54am
COMMENT hekimboard
perfect..
Posted on 07/04 12:15pm
COMMENT Corporate Website Design
Quite an amazing technique…what i like about CSS is that with slight Changes we can entirely change the look and feel of websites…nice post.
Posted on 07/05 2:29am
COMMENT Colin Miller - Freelance web designer
Great technique that has gone straight into the ‘code bank’! Excellent, well done
Posted on 07/05 4:26am
COMMENT CSS-Styled Lists: 20+ Demos, Tutorials and Best Of
[...] 8-Advanced CSS Menu Trick- Instead of simply altering the state of the navigation item the user is currently rolling over, we want to alter the non navigation items as well. This will help focus the users attention on the item they have selected on, and create a new look and feel for the site overall. [...]
Posted on 07/07 8:39am
COMMENT sapnagroup notes » Blog Archive » CSS Techniques
[...] Advanced CSS Menu Trick What we want to do here, is instead of simply altering the state of the navigation item the user is currently rolling over, we want to alter the non navigation items as well. [...]
Posted on 07/10 11:00am
COMMENT 五毒 » Blog Archive » 7个强大超酷的CSS导航菜单
[...] 2) 先进的CSS导航菜单技术 [...]
Posted on 07/10 8:04pm
COMMENT Advanced CSS Menu Trick | WhiteSandsDigital.com
[...] much power. It is not a tool like flash that really invites you to run away and take things too far.read more | digg [...]
Posted on 07/23 10:54am
COMMENT Orlando Villas
Great example, thanks.
Posted on 07/31 11:24am
COMMENT Pitter
How wonderful the blog site is! yes its my favorite.
Posted on 08/06 3:31am
COMMENT Улыбнитесь » Blog Archive » CSS-Styled Lists: 20+ Demos, Tutorials and Best Practices
[...] 8-Advanced CSS Menu Trick- Instead of simply altering the state of the navigation item the user is currently rolling over, we want to alter the non navigation items as well. This will help focus the users attention on the item they have selected on, and create a new look and feel for the site overall. [...]
Posted on 08/07 1:14pm
COMMENT Fiyat
eyvallah saol admaım
Posted on 08/14 3:20pm
COMMENT deckox - The design Destination » Blog Archive » Advanced CSS Navigation Menu Trick
[...] new features, giving us more opportunities to take advantage of previously unused pseudo elements. Advanced Css Menu Tricks is instead of simply altering the state of the navigation item the user is currently rolling over, [...]
Posted on 08/19 10:36am
COMMENT özel güvenlik
up down css menü please adress
Posted on 08/23 3:09am
COMMENT sesli
up down css menü please adress
Posted on 08/29 7:18pm
COMMENT hanlong
比较牛
Posted on 08/31 10:29pm
COMMENT Sohbet Sesli Chat Kameralı
thanks you bro.
Posted on 08/31 11:01pm
COMMENT 10 Challenging But Awesome CSS Techniques - NETTUTS
[...] start things off with a technique that isn’t too advanced, to get us limbered up. The focusing and blurring of navigation menu items is a powerful way to add attention to the selected item. This technique is different than [...]
Posted on 09/01 10:10pm
COMMENT polaris
like it
Posted on 09/02 9:30am
COMMENT 10 tutoriales de técnicas avanzadas de CSS | frogx.three
[...] Crear un menu con efecto Blur [...]
Posted on 09/02 10:01am
COMMENT Kameralı Sesli Chat
Thx u bro.
Posted on 09/05 9:39am
COMMENT Kameralı Sesli Chat
thx you very much.
Posted on 09/05 9:45am
COMMENT 50种强大的CSS技术 | 伊莱利奥的博客
[...] Advanced CSS Menu Trick [...]
Posted on 09/09 1:25am
COMMENT Blog - WEBmagix » Blog Archive » Awesome CSS techniquies
[...] start things off with a technique that isn’t too advanced, to get us limbered up. The focusing and blurring of navigation menu items is a powerful way to add attention to the selected item. This technique is different than [...]
Posted on 09/12 7:27am
COMMENT sesli sohbet
Thanks
Posted on 09/12 7:41pm
COMMENT sesli sohbet
Thanks………
Posted on 09/12 7:41pm
COMMENT Simple Way to Modify Menu Items with jQuery | Joh.nson.us
[...] came across this website the other day using some really ingenious css that would change the state of a menu item as you [...]
Posted on 09/16 7:57pm
COMMENT Colección Css (tutoriales): Layout, tables, forms, buttons… — WYDBLOG
[...] 13. Advanced CSS Menu Trick [...]
Posted on 09/19 10:45am
COMMENT Css
awesome tricks boy. Really great.
Posted on 09/23 2:50am
COMMENT 50 técnicas avanzadas CSS para una codificación efectiva. | AlainAlemany
[...] Otro menú avanzado hecho con CSS Lo que queremos hacer aquí, es, en vez de alterar simplemente el estado del objeto de [...]
Posted on 09/28 4:55pm
COMMENT gömlekçi
It does work in IE6 with the behavior file mentioned at the end of the article.
Posted on 10/01 4:39pm
COMMENT oryantal kostüm
awesome tricks boy. Really great.
Posted on 10/01 4:40pm
COMMENT Vadim
How do you get the whole thing from breaking apart when you play around with stretching out the browser?
My links just float down when you resize.
Vadim.
Thank you.
Posted on 10/02 5:27am
COMMENT WebMaster Hizmetleri - CSS ile yatay menü kullanın - derleme
[...] Advanced CSS Menu Trick [...]
Posted on 10/04 11:06am
COMMENT 放飞梦想 » Blog Archive » 一个伟大的汇集(7个超炫的CSS菜单)
[...] 2) Advanced CSS Menu Trick(一个新的菜单设计理念即:当鼠标悬浮在一个导航项目上时,它通过改变非导航项目的状态来集中用户对当前鼠标悬停项目的注意力,并为整个站点创建了一个新的面貌和感觉。适用于市面上任一流行的浏览器同时也适合旧版的IE) [...]
Posted on 10/07 1:32am
COMMENT Download 6 Free Ebooks,Software,Scripts and Templates, Iphone, Technology, Games, Life, Webmasters » Blog Archive » 50 Free CSS Navigation Menu Designs
[...] Advanced CSS Menu Trick [...]
Posted on 10/14 4:13am
COMMENT OpsiyonBlog.com | Video | Program | Photoshop | Müzik | Css | E-Ticaret | Script | Youtube | Yutub | » Blog Archive » CSS ile yatay menü örnekleri
[...] Advanced CSS Menu Trick [...]
Posted on 10/19 6:23pm
COMMENT Webmaster | Web Development
Hi,
Amazing activities
Great !!!!!!!
I have read this Blog and you have shared good information about Advanced CSS Menu Trick……….
Nice Post!!!!!!!
Thanks.
Posted on 10/21 7:39am
COMMENT CSS ile yatay menuler | Egenc.Net | css ile menu yap, css, menu, css menu, yatay menu, menu yap, css menu yap | Egenc.Net | Eğlence Sitesi
[...] Advanced CSS Menu Trick [...]
Posted on 10/23 4:09pm
COMMENT gömlek
Here at BMSB.com the theological holding that Han shot first in the first episode of the Holy Trilogy is considered blasphemy. That’s why I’m awfully confused to come across the following picture thank you.
Posted on 10/25 10:48am
COMMENT toplist
thank you.
Posted on 10/25 10:50am
COMMENT gömlek
Wow, I had no idea it was that easy!
Posted on 10/25 10:52am
COMMENT Ngra CSS knep som r vrt att ta en titt p | Webbrelaterat
[...] Advanced CSS Menu Trick We are now coming to a point where the browsers are supporting a lot of new features, giving us more opportunities to take advantage of previously unused pseudo elements. This example, advanced css menu trickswill work perfectly in any modern browser, yet still be fully functional in your older version of IE as well. [...]
Posted on 10/26 5:28pm
COMMENT sesli chat
Wow, I had no idea it was
Posted on 10/28 11:54pm
COMMENT sesli chat
thank youu.
Posted on 10/28 11:55pm
COMMENT chat
web site::)
Posted on 10/29 9:04am
COMMENT jsteb
Couldn’t you get the same effect if you set up the image with the 3 states lined up vertically? That way the CSS would have all the same values for the state change position. Yes, no? Thanks for a great tutorial.
Posted on 10/31 9:24am
COMMENT seslichat
seslichat http://www.bizimsokak.biz and sesli sohbet http://www.seslichatbiziz.com
Posted on 11/01 5:44pm
COMMENT Sete tutoriais avançados para criar menus via CSS - Blog do yogodoshi
[...] Advanced CSS Menu Trick [...]
Posted on 11/03 1:02pm
COMMENT v pills
Wow, I had no idea it was that easy!
Posted on 11/04 5:53am
COMMENT A Quick Introduction | StylizedWeb.com
[...] design / development / UX related classes at a local college. I have pioneered various different CSS techniques and tricks, which I write about on my 3.7CREAT.TV blog. I am co-host of the WebAxe podcast, and [...]
Posted on 11/12 3:50pm
COMMENT seslichat
möcten sie chat?kommen sie bitte unsere web seite http://www.bizimsokak.biz http://www.seslichatbiziz.com
Posted on 11/16 11:50pm
COMMENT seslichat
möcten sie chat?kommen sie bitte unsere web seite http://www.bizimsokak.biz http://www.seslichatbiziz.com ….
Posted on 11/16 11:51pm
COMMENT Escorts
The sample site is a fantastic example of the CSS trick. Just loved it!!!
Posted on 12/04 3:13pm
COMMENT seslichat
sesli chat te tek adres…
Posted on 12/20 11:40pm
COMMENT bedava okey oyna
Do as my client is doing on the Internet and as mhy client has done
in the past with self-publishing which has led to his books being
published in 20 languages and 27 different countries. Jump into it
full force and correct course when necessary. You will have to because
Google keeps changing the rules of the game.
Posted on 12/28 3:47pm
COMMENT okey
Google Page rank counts but not near as much as content. As the Internet
experts all say, “Content is King.”
Unfortunately, when most people see successful individuals make a
system like the Internet work, but they themselves don’t understand,
they make up stories. Stories abound about how successful individuals
are lucky, how they have gotten all the breaks in life, and how they
have to be dishonest to make it in this world. Most of these stories
are either untrue or out-and-out lies.
It turns out that becoming an Internet success is a lot simpler than
that. Success, after all, is based on commitment, perseverance, and
common sense. Above all, this is the most important secret to getting
started on an Internet business: Do it badly — but at least do it!!
That is exactly what I am doing this week with the launch of three
new websites for a client:
Posted on 12/28 3:49pm
COMMENT okey oyna
I personally think PR is not as important as it was. Google seems to be steering down a lexical keywords / page keyword density route (back to the old days of excite! in 96). Link text is still as important as ever, both internal and external. Whatever, Google is doing these days they seem to be purposefully leaving themselves open to increased manipulation by SEO professionals and weakening the index as a whole. I mean bulk cross-linking and lexical keywords stuffing in titles, they should have an algorithm to kick that stuff out, shouldn’t they? but I plead guilty on all counts;)
Posted on 12/28 3:50pm
COMMENT 50种强大的CSS技术 at cssframework
[...] Advanced CSS Menu Trick [...]
Posted on 12/29 10:16am
COMMENT A Quick Introduction | Castup
[...] design / development / UX related classes at a local college. I have pioneered various different CSS techniques and tricks, which I write about on my 3.7CREAT.TV blog. I am co-host of the WebAxe podcast, and [...]
Posted on 12/29 2:44pm
COMMENT Powerful CSS Techniques For Cool Website | Standalone Complex
[...] Advanced CSS Menu Trick What we want to do here, is instead of simply altering the state of the navigation item the user is [...]
Posted on 01/05 6:42pm
COMMENT bedava okey oyna
merci
Posted on 01/06 6:07pm
COMMENT okey oyna
cok mersi thank you
Posted on 01/06 6:17pm
COMMENT bizimsokak
It can also get kind of hairy when trying to get it to understand what a conversion is. Instead of just any click, it needs to be one specific click
Posted on 01/07 9:28pm
COMMENT Artı
Thanks you very much. It is wonderful..
Posted on 01/08 5:52am
COMMENT ttnet
Above all, this is the most important secret to getting
started on an Internet business: Do it badly — but at least do it!!
Posted on 01/19 6:48am
COMMENT sohbet siteleri
thanks you
Posted on 01/31 5:59pm
COMMENT logo tasarım
Thanks you really perfect one writing.I m always follow you
Posted on 02/03 5:04am
COMMENT check dll and exe,sys files
that’s really grat,i just get css button,now css menu.
I love css.
Posted on 02/12 5:08am
COMMENT sesLichatT
sesli chat,sesli sohbet,sesli chat,sesli sohbet ,sesli chat ,sesli sohbet,sesli sohbet,birsesdeyiz,seslikankam,sesliyizibiz.net
Posted on 02/14 2:19pm
COMMENT okey oyna
thanks .ok güzel bir site yolunuz açık olsun kankalar
Posted on 02/18 6:41pm
COMMENT muhabbet
thank çok güzel bir site olmuş elinize sağlık biz size her zaman diyoruz
Posted on 02/19 6:50am
COMMENT okey oyna
thanks çok güzel olmuş evet başarılarınızıu dileriz
Posted on 02/19 6:51am
COMMENT 43 PSD to XHTML, CSS Tutorials Creating Web Layouts And Navigation | 1stwebdesigner - Love In Design
[...] 26. Advanced CSS navigation [...]
Posted on 02/22 8:32pm
COMMENT ilser
thanks
Posted on 02/24 4:49am
COMMENT Güvenlik Sistemleri
Goddiiy!
Posted on 02/24 4:51am
COMMENT Alarm sistemleri
oowwww
Posted on 02/24 4:52am
COMMENT ercenk
thank you supper…
Posted on 02/26 4:31am
COMMENT ARTI AJANS
Thanks you too much, this is wonderful.
Posted on 03/04 11:07am
COMMENT eduardo
the blurred or out-of-focus effect only works the first time one enters your page. Afterward, you have regular menus and even by clicking on home it won’t load the blurred effect. One has to refresh the page to see it again. Good, but only for the first time one access the page; otherwise, a regular menu.
Posted on 03/10 8:07pm
COMMENT 30 Exceptional CSS Navigation Techniques
[...] 4. CSS Blur Menu [...]
Posted on 04/16 2:36pm