Skip to main content

Posts

Showing posts from August, 2010

Personalization in MOSS 2007

Getting Started with Personalization in MOSS 2007 The first thing you should do is make sure you've created a Shared Service Provider (SSP). To check this do the following: Go to MOSS 2007 Central Administration Click on Shared Services Administration in left navigation If this list is not empty then click on an SSP If this list is empty then click New SSP and create a Shared Service Provider Once on the Shared Services Administration page for your SSP you should see at least 3 sections titled: User Profiles and My Sites, Audiences and Search. To get started you'll need to import user profiles from the directory. To import user profiles: Under User Profiles and My Sites click on the link labeled "User profiles and properties" On the User Profiles and Properties page click on "Configure profile import" Provide a default access account, specify an account that has read access to your directory. Note: This account needs to also hav

Hide Your Quick Launch Bar and BreadCrumb in a Moss Site

If you want to hide the Quick launch bar and the Bread Crumb in a MOSS site : On the page where you want to hide : Edit page-----Add a web part-----Content editor web part-----In Source editor------ <style rel = "stylesheet" type="text/css"/> .ms-pagebreadcrumb { display:none; } </style> The above code is to hide the breadcrumb. <style> .ms-quicklaunch { display:none; } .ms-navframe { display:none; } </style> The above code is to hide the quich launch bar. Comments are welcome.