Todd Bleeker's 12 Hive

All MindsharpBlogs

Are you pondering what I'm pondering?

My Links

Post Categories

Archives

Blog Stats

Hide the Quick Launch Bar

Continuing with the Content Editor Web Part (CEWP) series (http://mindsharpblogs.com/Todd/articles/793.aspx).

When people ask me how to alter various elements of a Web Part Page; one common request is to hide the Quick Launch bar in a Windows SharePoint Services (WSS) Team Site. Fortunately, the code to do this can be readily understood by those with limited CSS and JavaScript experience (Step By Step instructions will be given near the end of this post) so it is a great place to begin discussion about the capabilities of the CEWP.

Import the StyleUnderCursor.dwp CEWP from my previous post onto the Home page of a Team Site and place your mouse over the top of the Quick Launch and you will see that there are three CSS classes consistently used ms-main, ms-nav, and ms-navframe to define the style of the Quick Launch:

This post will show you how to override one of the CSS classes using a CEWP. So, begin by draging and droping an empty CEWP from the Team Site Gallery onto a Web Part Zone on the Home page of a Team Site. Although you could append this new code to an existing CEWP, I commonly keep discrete functionality in separate Web Parts so that they can be exported and consumed individually. It isn't crutial what Web Part Zone or what position within the Web Part Zone you place the CEWP; however, because the finished CEWPs take up a small amount of vertical white space, I typically put them at the bottom of a Web Part Zone so they display at the bottom of the page below all other Web Parts.

There is very little difference between the scope of the ms-nav CSS class and the ms-navframe CSS class so either one will do, I'll begin by overriding the latter (if you want every aspect of the Quick Launch gone, use ms-nav instead). Syntactically define a specific CSS class by prefixing the class name with a dot or a period (.); syntactically define a style for an element's ID by prefixing the id with a pound symbol (#). Also, CSS must always be defined within <style></style> tags. To hide the Quick Launch you need to set a characteristic that lets you control the display of an element; in CSS this is called display. Setting display to none will prevent it from being rendered by the browser. The Quick Launch HTML will still be sent down to the browser, it just will not displayed. So, this is not the solution to pursue if you are trying to reduce bandwidth consumed by a WSS page. If you are unfamiliar with the CSS characteristics that you can alter, use FrontPage's CSS Intellisense or your favorite CSS syntax Web site.

To hide the Quick Launch, download and import my HideQuickLaunch.dwp or paste the following code into the property builder that pops up when the Source Editor... button of your new CEWP is clicked; then click the Save button.

Notice that your change takes effect immediately when you click the Save button:

In the figure above, note that the Quick Launch Bar is no longer showing (except for a tiny vertical bar on the left). Second, note that I gave the CEWP a nice Title: Hide Quick Launch Bar and set the Frame Style to None. This way when people are designing the page they will know what the CEWP is intended to do but nothing will show when the page is not in design mode.

Step By Step instructions to hide the Quick Launch Bar:

  1. Browse to the home page of a WSS Team Site as a Web Designer or Administrator
  2. From the Modify Shared Page smart-menu, choose Add Web Parts and then Browse.
  3. Put a Content Editor Web Part on the bottom of the Right Web Part Zone.
  4. From the new Web Part's smart-menu, choose Modify Shared Web Part.
  5. Choose the Source Editor... button on the resulting tool pane.
  6. Paste in the six lines of style code above the previous figure.
  7. Choose the Save button.
  8. In the tool pane, expand the Appearance category and alter the title to read "Hide Quick Launch Bar".
  9. Still in the tool pane, scroll down and choose None from the Frame Style dropdown.
  10. At the bottom of the tool pane, choose the OK button.

Step By Step instructions to export/import the Quick Launch Bar:

  1. Browse to the home page of a WSS Team Site as a Web Designer or Administrator
  2. From the Modify Shared Page smart-menu, choose Design This Page.
  3. From the Hide Quick Launch Bar Web Part's smart-menu, choose Export....
  4. On the resulting File Download dialog, choose the Save button.
  5. Specify a location and a file name. I like to remove all spaces from the name: HideQuickLaunchBar.dwp and temporarily save them to a DWP subdirectory right off my C:\ drive.
  6. Import this new Web Part directly onto a page, into the Team Site Web Part Gallery, or into the Virtual Server Web Part Gallery.

Imagine, your end user being able to dray and drop a no-server touch Web Part called Hide Quick Launch Bar from a Web Part Gallery on any Team Site (or custom Site Definition with a Quick Launch Bar equivalent) and the Quick Launch Bar simply disappears. They think you are a genius, but a half-dozen lines of code exported into a CEWP DWP is all it took.

You might ask, "What if I want to do this more globally rather than page by page?" Good question! Maybe you want to hide the Quick Launch bar on all Webs created with a given Site Definition. You actually have a number of excellent options at various levels. I'll describe these options in another post.

<Todd />

posted on Tuesday, October 25, 2005 2:07 PM

Feedback

# re: Hide the Quick Launch Bar 10/27/2005 8:53 AM Mark Kruger

Very Nice Tip and walk-through!

# re: Hide the Quick Launch Bar 10/27/2005 9:41 AM Todd Bleeker

Thanks Mark.

<Todd />

# re: Hide the Quick Launch Bar 12/1/2005 8:13 PM Luis Du Solier G

Yeah!, nice Tip.

Luis.

# re: Hide the Quick Launch Bar 1/25/2006 11:33 PM Tonie

Brilliant!

Is there a way to do something like this with the leftside menu on an area?

/Tonie

# re: Hide the Quick Launch Bar 1/27/2006 5:30 AM Todd Bleeker

Sure, you can use the same approach (I think even the same code). Just be aware that since the security trimmed actions are also in the left nav, you will need to make the actions available in some other way. Especially the Edit Page action.

<Todd />

# re: Hide the Quick Launch Bar 2/14/2006 5:46 AM Richi Fallegger

This is just great!

However I do not really find a way on how to use this same approach to an area (e.g. a picture library) since they do not use webparts. Or am I missing something? Any hint would be very welcome.

/Richi

# re: Hide the Quick Launch Bar 3/10/2006 5:04 AM Todd Bleeker

Areas do use Web Part Pages and hense Web Parts. However, some Area Web Part Pages have Web Part Zones with properties set in the direct-mode page to prevent people from customizing the Web Parts on the page.

Of course, all admin pages (pages in .\60\TEMPLATE\LAYOUTS\1033) are never Web Part Pages. For these pages, you need to use the AlternateCSS or CustomJSUrl in the site definition's ONET.XML file.

<Todd />

# Guidelines to Centralize SharePoint Style/Script Customizations 3/10/2006 4:25 PM Todd Bleeker's 60 Hive

# SharePoint Web Parts: Free 3rd Party SharePoint Web Parts &amp; Tools 6/1/2006 3:48 PM The Boiler Room - Mark Kruger, SharePoint MVP

For those who aggregate my feed and do not often visit the blog iteself... I've updated my SharePoint...

# Hide QuickLaunch for SharePoint 2007 7/27/2006 5:39 PM Share This Point

# re: Hide the Quick Launch Bar 7/30/2006 7:22 AM עיצוב אירועים

However I do not really find a way on how to use this same approach to an area (e.g. a picture library)

# re: Hide the Quick Launch Bar 1/10/2007 9:41 AM Aaron Fox

Fantastic! thanks a ton for the step by step.

# re: Hide the Quick Launch Bar 6/22/2007 8:39 AM cody

dis rocks

# Free SharePoint Web Parts (3rd Party) 6/26/2007 10:14 AM The Boiler Room - Mark Kruger, Microsoft SharePoin

Free SharePoint Web Parts (3rd Party) Konrad Brunner - UGS&#39;s Web Parts (broken link 8/25) Document

# re: Hide the Quick Launch Bar 8/23/2007 3:13 AM Akex

Awsome post, thank you!

# re: Hide the Quick Launch Bar 9/24/2007 9:24 PM Venkatesh

Thanks a Lot Dude. It's very Helpful. :)

# re: Hide the Quick Launch Bar 11/6/2007 9:54 AM Jme

TY!!! SO much, very helpful.

# re: Hide the Quick Launch Bar 12/17/2007 8:04 AM Hoof Hearted

nice...

# re: Hide the Quick Launch Bar 1/29/2008 3:20 PM Geert Vervust

Hi Todd,
Thanks for the tip.
I want to do the same thing on a meeting workspace with the 'meeting series'. One page conatins general info the other meeting related info so on the general info page I want to remove the 'meeting series'.
If I use your trick the layout is damaged (everything is shifted).
Any solution?

# re: Hide the Quick Launch Bar 2/28/2008 8:17 AM Kieran

Careful in 2007 with:

.ms-quicklaunch { display: none;}
.ms-navframe { display: none;}

it prevents pop-up calendars from displaying!

# re: Hide the Quick Launch Bar 5/15/2008 11:37 PM msn nickleri

very good games

# re: Exclusion Rules 5/15/2008 11:37 PM oda oyunları

very good games

# re: Hide the Quick Launch Bar 5/24/2008 11:12 AM full dizi izle

thanks good plan

# re: Hide the Quick Launch Bar 5/31/2008 9:35 AM Youtube

This is just great!

# re: Hide the Quick Launch Bar 6/2/2008 5:44 AM Araba Oyunları

You actually have a number of excellent options at various levels. I'll describe these options in another post.
http://www.futboloyunlari.org
http://www.arabaresim.net
http://www.kiz-oyunlari.com

# re: Hide the Quick Launch Bar 6/5/2008 5:45 AM Youtube

thanks mr Todd. great

# re: Hide the Quick Launch Bar 6/9/2008 10:19 AM Horoscope

These are very interesting information. Thank you for having published.
http://www.contact-voyance.com
http://www.voyance-pascale.com
http://www.voyance-pascale.fr

# re: Hide the Quick Launch Bar 6/19/2008 2:05 AM Youtube

THANK YOU

# re: Hide the Quick Launch Bar 6/20/2008 8:20 PM youtube

Hello Men
gallery is fantastic "Sunset Waves" very good

I am Blog

# re: Hide the Quick Launch Bar 6/24/2008 9:37 PM voyance gratuite

Great looking theater, cool concept and good work !

# re: Hide the Quick Launch Bar 6/26/2008 8:12 AM Oyun

it prevents pop-up calendars from displaying!
http://www.aylak.com

# free online car game 6/28/2008 12:04 PM Araba yarışları

free online car game araba yarslari araba yunlari

# free online car game 6/28/2008 12:06 PM Araba yarislari

free online car game araba yarislari araba oyunlari araba yarisi araba oyunu

# free online car racing game 6/28/2008 12:09 PM Yarış oyunları

free online car racing game

# re: Hide the Quick Launch Bar 6/28/2008 7:07 PM Mirc

thank you

# re: Hide the Quick Launch Bar 6/29/2008 4:26 PM Sihirli Oyunlar

Thanks a lot of

# re: Hide the Quick Launch Bar 6/29/2008 4:27 PM Oyunlarım

thank you very nice

# re: Hide the Quick Launch Bar 6/29/2008 4:28 PM Yemek Tarifleri

very well

# re: Hide the Quick Launch Bar 6/30/2008 7:12 AM mircalem

thank you so much

# re: Hide the Quick Launch Bar 6/30/2008 7:47 AM bayrak

thank you so much

# re: Hide the Quick Launch Bar 6/30/2008 9:59 AM youtube

thank you so much

# araba oyunu 7/4/2008 9:32 AM araba oyunu

car game

# re: Hide the Quick Launch Bar 7/14/2008 5:05 AM rencontre

Yes, it's very Fantastic ! Thanks for all !

# re: Hide the Quick Launch Bar 7/15/2008 7:30 PM Chat

Thank you my friend..

# re: Hide the Quick Launch Bar 7/18/2008 11:22 AM youtube

http://mindsharpblogs.com/todd/archive/2005/10/25/801.aspx

# re: Hide the Quick Launch Bar 7/18/2008 12:22 PM Todd Bleeker's 12 Hive

# re: Hide the Quick Launch Bar 7/20/2008 1:04 AM kelebek

thans for all.

# re: Hide the Quick Launch Bar 7/20/2008 1:04 AM forum

thanks everybody

# re: Hide the Quick Launch Bar 7/20/2008 1:05 AM kelebek script

thats great.

# re: Hide the Quick Launch Bar 7/20/2008 4:58 PM A&A Reisen

Thank You

# re: Hide the Quick Launch Bar 7/21/2008 2:17 AM komik

thanks

# re: Hide the Quick Launch Bar 7/21/2008 11:32 AM çet

thanks.

# re: Hide the Quick Launch Bar 7/21/2008 2:09 PM ilahiler

thankss

# Müzik Dİnle 7/21/2008 4:36 PM müzik dinle

thanks for links very nice good site

# re: Hide the Quick Launch Bar 7/22/2008 2:43 AM güvenlik kıyafeti

wonderful link thanks you

# re: Hide the Quick Launch Bar 7/22/2008 2:44 AM Çizgi Film

thank you link wonderful

# re: Hide the Quick Launch Bar 7/22/2008 2:44 AM Reklam Ajans

very nice thanks link

# re: Hide the Quick Launch Bar 7/22/2008 2:47 AM web tasarım

thank you very much wonderful

# re: Hide the Quick Launch Bar 7/22/2008 2:47 AM film izle

very nice wonderful thanks web page and posted

# re: Hide the Quick Launch Bar 7/22/2008 2:48 AM Gelinlikler

thank you very nice cinema web page

# re: Hide the Quick Launch Bar 7/22/2008 2:49 AM masaüstü resimleri

thank you link

# re: Hide the Quick Launch Bar 7/22/2008 2:50 AM Mercedes Yedek Parçaları

very much thanks cars design

# re: Hide the Quick Launch Bar 7/22/2008 2:52 AM autocad kursu

very nice web page autocad schools

# re: Hide the Quick Launch Bar 7/22/2008 3:11 AM Havuz

thank you very nice web page

# re: Hide the Quick Launch Bar 7/22/2008 3:11 AM yemek tarifleri

thank you very nice links

# re: Hide the Quick Launch Bar 7/22/2008 3:12 AM havuz

thank you very nice web page and link wonderful

# re: Mirc 7/23/2008 6:37 AM Mirc

animation,chat, funny videos,astronomy,stories, games,the best love poems, script
this site is the best in Turkey

http://www.mircalem.net

thank you

# ilahiler 7/23/2008 11:33 AM cin@hotmail.com

animation,chat, funny videos,astronomy,stories, games,the best love poems, script
this site is the best in Turkey s

# bayrak 7/23/2008 2:15 PM Bayrakci

animation,chat, funny videos,astronomy,stories, games,the best love poems, script
this site is the best in Turkey

# bayrakci 7/23/2008 2:16 PM bayrak

animation,chat, funny videos,astronomy,stories, games,the best love poems, script
this site is the best in Turkey

# sohbet 7/23/2008 2:17 PM sohbet

animation,chat, funny videos,astronomy,stories, games,the best love poems, script
this site is the best in Turkey

# re: Hide the Quick Launch Bar 7/24/2008 5:10 AM Sohbet

animation,chat, funny videos,astronomy,stories, games,the best love poems, scripts, biographies,
news, interpretation of dreams, woman,music,hygiene

http://www.tamdost.com

thank you site admin....

# re: Hide the Quick Launch Bar 7/26/2008 5:27 PM oyun

Thanks so much.

# re: Hide the Quick Launch Bar 7/27/2008 5:40 AM izleSene

thank you very much. It is wonderful.

# Gelinlikler 7/29/2008 6:56 PM Gelinlikler

Thankf for link wonderful eliminate good site

# re: Hide the Quick Launch Bar 7/30/2008 9:49 AM prens_3463@hotmail.com

thank you...
http://www.aleminyeri.net

# re: Chat 7/30/2008 9:49 AM Chat

thank you...
http://www.aleminyeri.net

# re: Hide the Quick Launch Bar 8/5/2008 4:13 PM Kız Oyunları

Thanks man for that wonderful site....

# re: Hide the Quick Launch Bar 8/5/2008 4:58 PM Savaş Oyunları

This is what i need..Thanks for that tips..So usefully...

# re: Hide the Quick Launch Bar 8/5/2008 5:00 PM Araba Oyunları

Thanks for that great web site...Congrulations...

# re: Hide the Quick Launch Bar 8/6/2008 9:23 AM mirc

thanks you

# re: Hide the Quick Launch Bar 8/9/2008 1:35 AM Reseller

very good

# re: Hide the Quick Launch Bar 8/9/2008 1:36 AM film izle

very good

# re: Hide the Quick Launch Bar 8/9/2008 1:36 AM otobüs firmaları

very good

# re: Hide the Quick Launch Bar 8/9/2008 1:37 AM rüya tabiri

very good

# re: Hide the Quick Launch Bar 8/9/2008 1:38 AM ilahi dinle

very good

# re: Hide the Quick Launch Bar 8/9/2008 1:38 AM müzik dinle

very good

# re: Hide the Quick Launch Bar 8/11/2008 4:34 AM Vaterschaftstest

Pretty well done!

# re: Hide the Quick Launch Bar 8/13/2008 11:47 AM porno

Thanks for your job, well done

# re: Hide the Quick Launch Bar 8/14/2008 10:03 AM gaziosmanpaşa

very good

# thanks.. very.. 8/18/2008 9:19 AM çet

thanks.. very..

# nobody 8/18/2008 2:16 PM mirc

thanks

# re: Hide the Quick Launch Bar 8/18/2008 2:16 PM chat odaları

seems nice.

# re: Hide the Quick Launch Bar 8/18/2008 2:17 PM sohbet odaları

great

# re: Hide the Quick Launch Bar 8/18/2008 2:18 PM siberalem

cool.

# Voyance 8/20/2008 6:27 AM voyance

very good

# mirc 8/27/2008 4:09 AM mirc

thank you very muck.

# re: Hide the Quick Launch Bar 9/3/2008 5:51 PM youtube, izlesene

thanks for very much

# Voyance gratuite 9/4/2008 10:20 AM soraya

Veru goood, thanks!
<a href="http://voyance-gratuite-tarot-horoscope.com/" target="_blank">Voyance Gratuite</a>
,
<a href="http://voyancesgratuite.com/" target="_blank">Voyance immediate</a>

# תוספות שיער 9/8/2008 4:24 AM תוספות שיער

http://www.all-hair.co.il/

# re: Hide the Quick Launch Bar 9/10/2008 1:22 AM kabin

its very nice projects.

# re: Hide the Quick Launch Bar 9/10/2008 5:35 AM mirc

thanks.

# re: Hide the Quick Launch Bar 9/10/2008 5:39 AM mirc

thanks.

# chat 9/11/2008 9:20 AM chat

chat, sohbet siteleri, canli sohbet

# re: Hide the Quick Launch Bar 9/11/2008 4:54 PM oyun

Thanks so much.

# sohbet siteleri 9/12/2008 10:54 AM sohbet siteleri

thank you my friend.

# film izle 9/14/2008 6:17 AM film izle

thanxx

# re: Hide the Quick Launch Bar 9/15/2008 5:49 AM mirc

thanks.

# bayrak 9/15/2008 6:43 AM bayrak

thanx

# bayrak 9/15/2008 6:45 AM bayrak

thanxx

# türk bayrağı 9/15/2008 6:45 AM türk bayrağı

thanxx

# film izle 9/15/2008 6:46 AM film izle

thanxx

# re: Hide the Quick Launch Bar 9/15/2008 1:58 PM Sohbet

thanks

# re: Hide the Quick Launch Bar 9/16/2008 12:53 AM mirc

thanks.

# re: Hide the Quick Launch Bar 9/16/2008 3:19 AM erotik shop

THANKS

# re: Hide the Quick Launch Bar 9/16/2008 3:36 AM sex shop

thanks you

# re: Hide the Quick Launch Bar 9/16/2008 4:04 AM chat

thanks.

# re: Hide the Quick Launch Bar 9/20/2008 11:26 AM nikon d300

Thanks for sharing it.

# re: Hide the Quick Launch Bar 9/20/2008 6:31 PM komik

great!

# chat 9/21/2008 3:54 PM chat

thank you

# Yarış Oyunları 9/23/2008 6:23 AM Yarış Oyunları

hersey güzel olacak

# Macera Oyunları 9/23/2008 6:36 AM Macera Oyunları

güzel bir haraket bu

# Spor Oyunları 9/23/2008 7:04 AM Spor Oyunları

Spor Oyunlari

# Zeka Oyunları 9/23/2008 7:07 AM Zeka Oyunları

Zeka Oyunlari

# oyun oyna 9/23/2008 7:32 AM oyun oyna

thanks alot

# oyunlar 9/23/2008 7:33 AM oyunlar

thanks alot

# oyun 9/23/2008 7:33 AM oyun

thanks alot

# Çocuk Oyunları 9/23/2008 7:41 AM çocuk oyunları

thanks alot

# hedef oyunları 9/23/2008 7:41 AM hedef oyunları

thanks alot

# beceri oyunları 9/23/2008 7:41 AM beceri oyunları

thanks alot

# sohbet 9/24/2008 12:12 AM sohbet

thanks

# chat 9/24/2008 12:12 AM chat

thanks a lot

# netlog 9/24/2008 12:13 AM netlog

thanks

# çet 9/24/2008 12:13 AM çet

sagolun

# re: Hide the Quick Launch Bar 9/24/2008 11:29 PM Mel

geez - your post is supered spammed!

# netlog 9/25/2008 9:23 AM netlog

thank you site admin.

# şiir 9/25/2008 10:32 AM şiir

thanks

# erotik shop 9/27/2008 7:15 PM erotik shop

thanks staff

# seks shop 9/27/2008 7:20 PM seks shop

thanks very good .

# Cafe Paylaşım 9/28/2008 10:14 AM paylaşım

Thanks

# re: Hide the Quick Launch Bar 9/29/2008 3:35 AM çet

THANK YOU

# re: Hide the Quick Launch Bar 9/29/2008 3:43 AM trsohbeti

thank youuuuu

# re: Hide the Quick Launch Bar 9/29/2008 4:16 AM mirc

Thanks..

# maynet 9/29/2008 1:15 PM maynet

thanks

# sohpet 9/29/2008 1:16 PM sohpet

Danke

# re: Hide the Quick Launch Bar 10/4/2008 11:33 AM lida

thanks a lot

# re: Hide the Quick Launch Bar 10/4/2008 11:34 AM lida

thanks

# re: Hide the Quick Launch Bar 10/4/2008 11:36 AM lida

thanks a lot

# re: Hide the Quick Launch Bar 10/4/2008 11:36 AM tus

thanks

# re: Hide the Quick Launch Bar 10/4/2008 11:36 AM oto kiralama

thanks a lot

# re: Hide the Quick Launch Bar 10/4/2008 11:37 AM seo

thanks .

# re: Hide the Quick Launch Bar 10/4/2008 11:38 AM lida

thanks

# sohbet 10/4/2008 11:40 PM sohbettir

Thanks yours

# sohbettir 10/4/2008 11:41 PM sohbet

Hhanks

# canlı sohbet 10/4/2008 11:42 PM sesli sohbet

Thanks

# canlı chaty 10/4/2008 11:42 PM sohbet siteleri

saol

# sohbet 10/5/2008 8:58 AM sohbet

Thank you very much

# re: Hide the Quick Launch Bar 10/7/2008 10:35 AM chat

thanks

# re: Hide the Quick Launch Bar 10/8/2008 9:39 AM sohbet

thank you admin yani çok sagolsin :)

# re: Hide the Quick Launch Bar 10/11/2008 11:12 AM mirc

Love u admin thanks.

Title  
Name  
Url
CAPTCHA
Protected by Clearscreen.SharpHIPEnter the code you see:
Comments