views:

95

answers:

5

I'm thinking of implementing WSS, but I want complete control over the Admin interface, as far as look-and-feel and navigation.

Is this possible?

A: 

I don't know about direct customization, but it's all available through an API and possibly through web services, so you should be able to write your own, either as part of the WSS site or separately.

John Saunders
+2  A: 

You could certainly write features involving custom actions and application pages to do this.

If you don't have much experience with SharePoint development but know ASP.NET, I recommend reading Inside Windows SharePoint Services 3.0 by Ted Pattison and Daniel Larson. It's well written and has some great information on how to plug into the SharePoint user interface and add this type of functionality.

Alex Angas
A: 

In WSS 3.0 (and MOSS 2007) the look and feel is controlled through Master Pages. Locate the Master Pages and Themes associated with the Admin site and change it the way you want.

If you need to change the actual way it works be careful and make sure you backup everything before you make any changes.

There are a number of preset templates available from Microsoft Technet that might help you out. There is also an article over at ASP Alliance that gives some information as to where the Admin Master Pages are located. Also there is a good blog entry over on MSDN by Joel Oleson that describes modifying Master Pages and Themes in WSS and MOSS.

CertifiedCrazy
+2  A: 

What the others said.. but what are you trying to achieve? The admin pages I usually keep intact for most projects. I just bolt-on features that I need. Also, admin interface is a wide term. Is modifying a view an admin task? You could be looking at a lot of work.. to what end?

ArjanP
A: 

2 options:

  • create a custom theme, but then you're still stuck to the default SP HTML
  • copy application.master into a new file and modify the html / css, the set that as the SP admin master
Colin