<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0">
  <channel>
    <title>Snipplr</title>
    <description>Recent snippets posted on Snipplr.com</description>
    <link>https://snipplr.com/</link>
    <lastBuildDate>Tue, 09 Jun 2026 18:09:21 +0000</lastBuildDate>
    <item>
      <title>(CSS) bringing back list styles in a section after they have been removed from section\'s parent - rumremix</title>
      <link>https://snipplr.com/view/56592/bringing-back-list-styles-in-a-section-after-they-have-been-removed-from-sections-parent</link>
      <description>&lt;p&gt;We use lists for all sorts of things, especiall navigation elements for which bullets don't make sense. Often, it is most convenient to remove bullet/list styles from all list elements globally. In fact many css resets do just that. However, there may be content areas where we do want bullets! The following css brings back the list styles for all list elements within a container with the class "bulletsAvailable". These values approximate the normal default browser behavior.&lt;/p&gt;</description>
      <pubDate>Thu, 14 Jul 2011 10:57:26 UTC</pubDate>
      <guid>https://snipplr.com/view/56592/bringing-back-list-styles-in-a-section-after-they-have-been-removed-from-sections-parent</guid>
    </item>
    <item>
      <title>(CSS) Fix SharePoint 2010 scrollbar issues - rumremix</title>
      <link>https://snipplr.com/view/52707/fix-sharepoint-2010-scrollbar-issues</link>
      <description>&lt;p&gt;see link&lt;/p&gt;</description>
      <pubDate>Thu, 28 Apr 2011 06:11:23 UTC</pubDate>
      <guid>https://snipplr.com/view/52707/fix-sharepoint-2010-scrollbar-issues</guid>
    </item>
    <item>
      <title>(CSS) style the search bar in sharepoint 2010 - rumremix</title>
      <link>https://snipplr.com/view/52508/style-the-search-bar-in-sharepoint-2010</link>
      <description>&lt;p&gt;This is the quickest way to style the search bar. It involves creating one single image that includes both the input area and search button.&lt;/p&gt;</description>
      <pubDate>Sat, 23 Apr 2011 08:50:11 UTC</pubDate>
      <guid>https://snipplr.com/view/52508/style-the-search-bar-in-sharepoint-2010</guid>
    </item>
    <item>
      <title>(CSS) sharepoint 2010 css reset - rumremix</title>
      <link>https://snipplr.com/view/52395/sharepoint-2010-css-reset</link>
      <description>&lt;p&gt;The "inherit" aspect of this did not always work for me. For example, font-family may need to be explicitly specified in the generated css (in place of "inherit"). But this just takes a couple seconds. Simply search for "family" and replace "inherit" with the correct font family -- only appears in two places so this is really easy. May need to do this for other inherit declarations also.&lt;/p&gt;</description>
      <pubDate>Thu, 21 Apr 2011 03:24:57 UTC</pubDate>
      <guid>https://snipplr.com/view/52395/sharepoint-2010-css-reset</guid>
    </item>
    <item>
      <title>(CSS) Sharepoint 2010 Custom Class For Content Editor Web Part Css Syntax - rumremix</title>
      <link>https://snipplr.com/view/46067/sharepoint-2010-custom-class-for-content-editor-web-part-css-syntax</link>
      <description>&lt;p&gt;Further below in the code are the default style declarations that can be overridden in custom css. To create custom classes that will be available in the rich text editors, follow the example below:&#13;
&#13;
&#13;
 .ms-rteElement-appleRed {&#13;
	color:red; &#13;
	-ms-name:"appleRed";&#13;
}&#13;
&#13;
Note: for the above custom-named style to appear in the rich text editor, it must live in a css file linked directly from the master page. That is, it will not work if it lives in a css file that is linked via an @import in  another css file.&lt;/p&gt;</description>
      <pubDate>Thu, 23 Dec 2010 09:40:50 UTC</pubDate>
      <guid>https://snipplr.com/view/46067/sharepoint-2010-custom-class-for-content-editor-web-part-css-syntax</guid>
    </item>
    <item>
      <title>(CSS) css image replacement technique - rumremix</title>
      <link>https://snipplr.com/view/44206/css-image-replacement-technique</link>
      <description>&lt;p&gt;Technique #8 in example page.&lt;/p&gt;</description>
      <pubDate>Mon, 15 Nov 2010 18:25:10 UTC</pubDate>
      <guid>https://snipplr.com/view/44206/css-image-replacement-technique</guid>
    </item>
    <item>
      <title>(CSS) css border shorthand order - rumremix</title>
      <link>https://snipplr.com/view/44205/css-border-shorthand-order</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Mon, 15 Nov 2010 18:22:15 UTC</pubDate>
      <guid>https://snipplr.com/view/44205/css-border-shorthand-order</guid>
    </item>
    <item>
      <title>(CSS) CSS Conditional Comments in SharePoint 2010 - rumremix</title>
      <link>https://snipplr.com/view/42521/css-conditional-comments-in-sharepoint-2010</link>
      <description>&lt;p&gt;We discovered that conditional comments donâ€™t always work so well in SP2010. Instead, it is necessary to use a SP control. Below is the correct syntax.&lt;/p&gt;</description>
      <pubDate>Tue, 19 Oct 2010 06:24:45 UTC</pubDate>
      <guid>https://snipplr.com/view/42521/css-conditional-comments-in-sharepoint-2010</guid>
    </item>
    <item>
      <title>(CSS) sharepoint 2010 how to remove height from ribbon area when ribbon hidden - rumremix</title>
      <link>https://snipplr.com/view/38081/sharepoint-2010-how-to-remove-height-from-ribbon-area-when-ribbon-hidden</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 30 Jul 2010 11:33:01 UTC</pubDate>
      <guid>https://snipplr.com/view/38081/sharepoint-2010-how-to-remove-height-from-ribbon-area-when-ribbon-hidden</guid>
    </item>
    <item>
      <title>(CSS) sharepoint 2010 site actions and welcome link taming code - rumremix</title>
      <link>https://snipplr.com/view/38080/sharepoint-2010-site-actions-and-welcome-link-taming-code</link>
      <description>&lt;p&gt;Both master page code and css included here. If adding master page code to a master page, remove other instances of any controls that already exist on the master page. Also included here is css for just ie7 as it renders differently than ie8 and other browsers. place this code in a file called ie7.css and link to it via\\r\\n\\r\\n\\r\\n&lt;!--[if&gt;\\r\\n		&lt;link&gt;\\r\\n		&lt;![endif]--&gt;\\r\\n\\r\\nin the master page.&lt;/p&gt;</description>
      <pubDate>Fri, 30 Jul 2010 11:20:02 UTC</pubDate>
      <guid>https://snipplr.com/view/38080/sharepoint-2010-site-actions-and-welcome-link-taming-code</guid>
    </item>
    <item>
      <title>(CSS) sharepoint 2007 custom class for content editor web part css syntax - rumremix</title>
      <link>https://snipplr.com/view/35870/sharepoint-2007-custom-class-for-content-editor-web-part-css-syntax</link>
      <description>&lt;p&gt;&lt;/p&gt;</description>
      <pubDate>Fri, 18 Jun 2010 08:35:46 UTC</pubDate>
      <guid>https://snipplr.com/view/35870/sharepoint-2007-custom-class-for-content-editor-web-part-css-syntax</guid>
    </item>
  </channel>
</rss>
