Sometimes I wish that there was just one way to brand SharePoint and it would be fast and easy. Well I can dream on, right? There are so many ways to do this, and I have tried to sort out what the best way would be to brand a site with least amount of work …
Tag: css
If you want to hide the “Conversations” options from the dropdown menu that is shown after the Search box, the easiest way is to CSS hide it. Set the following class to “display:none”. #ctl00_PlaceHolderSearchArea_SmallSearchInputBox1_csr_NavDropdownList div:nth-child(3){display:none;} Then you want to remove the same option from the Search center page (results.aspx) also. Edit the Search page …
Usually when I want to center align a div on a page, I use margin:auto auto and set my width to a specific width, like 940px in my stylesheet. But, this does NOT work in IE 8. So to make that work, use width:940pxheight:100%position:absoluteleft:50% (to tell that your div should start in the middle of …
I do a lot of CSS changes to my sites, I find that easier and quicker than to rebuild themes or site definitions and stuff. MOSS 2007 uses the following css files:controls.cssHtmlEditorCustomStyles.cssHtmlEditorTableFormats.cssportal.csscore.css When you create a WSS site, the following CSS files are used:portal.csscore.css MySite portal.csscore.css
In this folder (the one and only.. right?) “C:Program FilesCommon FilesMicrosoft SharedWeb Server Extensions12TEMPLATELAYOUTSINC” is a file that is called “ifsmain.css”. This stylesheet file controls how a web form built by InfoPath is displayed. If you want to remove the logo “powered by InfoPath services” that is displayed in the bottom of every web form …