Skip to main content

Posts

Rounded Corners in SharePoint

Rounded corners have become a staple in website design. But they come with a price. Don't get me wrong I really like the look of them and they really help soften the look of the site. In most cases you can create this look by using the method below. Later on in this post I will highlight some of the things you can do and some of the things not technically possible without major custom development. Design 1: Rounded corners to frame a site: Open up your master page and add 1 <div> tag right before the ms-main table to represent the site container (This is used to position the site and give it its width) Add 4 more <div> tags before the ms-main table to represent your 4 corners (top left, top right, bottom left, bottom right) <div id="xyz-content-corner-tl"> <div id="xyz-content-corner-tr"> <div id="xyz-content-corner-bl"> <div id="xyz-content-corner-br"> Add in the followin...

IA and Design Process Presentation Download!

I want to thank everyone for attending my presentation. It was a great success! I had a co-worker video record the session but it will take a little while to get that uploaded/edited for the masses. Here is the link to my presentation. I have included notes on each slide for the dialog. Download: http://cid-ed1a37150dabcd2d.skydrive.live.com/self.aspx/Public/IA%20and%20Branding%20Process%7C_ErikSwenson.pptx?ccr=80 Thanks again, enjoy and please add your comments to this post!

User Experience Design Process: Teaser

As a teaser, I would like to provide a sample of my upcoming session at the SharePoint Summit 2009. Roles: Information Architecture –Much of the interface navigation and page structure will be driven by the Information Architect. Designer – Skill depends on several factors, if leveraging native features, skill is very dependent on knowledge of SharePoint. SharePoint Front-End Development – MOSS-FED highly specialized skill set, especially if doing CSS-based changes. UXD Process:

Agenda for SharePoint Summit 2009 Presentation

Here is the final agenda for my presentation for the SharePoint Summit in Montreal on April 8th from 9:15 a.m. - 10:00 a.m. I only have 45mins to get it all in so wish me luck. Anything is possible Roles Design process Gathering Branding Requirements Create Sitemap & Navigation Create Wireframes Create Visual Design Tools for building the design Implementation methods options Additional guides/references Q/A Note : I will post my slide deck after the conference. Thanks for whoever posted that question in the comment area.

SharePoint Summit 2009 Presentation

As I prepare my slides and agenda for my presentation at the SharePoint Summit in Montreal Canada I would like your input.  Please provide your feedback/comments and if you plan on attending my session! " IA and Branding Process: Sketches to Wireframes to Hi-Fidelity Designs". Methods to gathering requirements Benefits of a creative brief and Style guide Understand what functional concepts are and how they can be used Explore options on creating wireframes Creating the Design Composition (Differences between design adaptation and custom design) Building the design (CSS, Images, Master Pages, Page layouts, testing for multiple browsers and Mobile devices) Thanks!

Hide #1 tab in Top Navigation (Home)

OOTB SharePoint will not allow you to remove the 1st tab on the main navigation through the UI. To do this you can simply use the following CSS below and add it to your custom CSS or use the CEWP page style method to just make the change just for that page. If you look at the code, you will notice that each top navigation item has an ID. zz1_TopNavigationMenun0 (Home Tab) zz1_TopNavigationMenun1 (Tab #2) zz1_TopNavigationMenun2 (Tab #3) zz1_TopNavigationMenun... (Tab Etc) Since the home tab is always #1 it is always given the ID of "0" CSS Code: #zz1_TopNavigationMenun0 { display: none !important; }