<?xml version="1.0" encoding="UTF-8"?>
<rss version="2.0"
	xmlns:content="http://purl.org/rss/1.0/modules/content/"
	xmlns:wfw="http://wellformedweb.org/CommentAPI/"
	xmlns:dc="http://purl.org/dc/elements/1.1/"
	xmlns:atom="http://www.w3.org/2005/Atom"
	xmlns:sy="http://purl.org/rss/1.0/modules/syndication/"
	xmlns:slash="http://purl.org/rss/1.0/modules/slash/"
	>

<channel>
	<title>Redaware Limited - Computer Services &#38; Business IT Solutions in Tenbury Wells, Worcestershire &#187; CSS</title>
	<atom:link href="http://www.redaware.net/tag/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://www.redaware.net</link>
	<description></description>
	<lastBuildDate>Tue, 31 Jan 2012 10:49:12 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3.1</generator>
		<item>
		<title>CSS Snippet</title>
		<link>http://www.redaware.net/2009/11/css-snippet/</link>
		<comments>http://www.redaware.net/2009/11/css-snippet/#comments</comments>
		<pubDate>Tue, 24 Nov 2009 13:58:15 +0000</pubDate>
		<dc:creator>tsymonds</dc:creator>
				<category><![CDATA[Web Developement]]></category>
		<category><![CDATA[CSS]]></category>

		<guid isPermaLink="false">http://www.redaware.net/?p=146</guid>
		<description><![CDATA[This is a snippet of the CSS code I use when starting new project. The are not rquired and can be removed]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>This is a snippet of the CSS code I use when starting new project. The are not rquired and can be removed</p>
<pre class="brush: css; title: ; notranslate">
body {
	margin: 0;
	padding: 0;
}

/* I don't link the link styling defaults */
body a {
	text-decoration: none;
}

body a:hover {
	text-decoration: underline;
}

/* If I want a border I use my own style */
img{
	border: none;
}

.fltrt {
	float: right;
}

.fltlft {
	float: left;
}

.clrflt {
	clear:both;
	height:0;
	font-size: 1px;
	line-height: 0px;
}

/* Used for image Opacity / Transparency styling */
img.opacity {
	opacity:0.4;
	filter:alpha(opacity=40);
}

img.opacity:hover {
	opacity:1;
	filter:alpha(opacity=100);
}

/* My prefered forms style */
fieldset
{
	border: 1px solid #999999;
	background-color: #F4F4F4;
	margin-top: 25px;
	margin-right: auto;
	margin-bottom: 25px;
	margin-left: auto;
}

label{
	width: 200px;
	float: left;
	text-align: left;
	margin-right: 0.5em;
	display: block;

}

input{
	border-right: #999 1px solid;
	border-top: #999 1px solid;
	border-left: #999 1px solid;
	border-bottom: #999 1px solid;
}

textarea {
	border-right: #999 1px solid;
	border-top: #999 1px solid;
	border-left: #999 1px solid;
	border-bottom: #999 1px solid;
}
</pre>
<div class="shr-publisher-146"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.redaware.net/2009/11/css-snippet/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>5 CSS Tips</title>
		<link>http://www.redaware.net/2009/09/5-css-tips/</link>
		<comments>http://www.redaware.net/2009/09/5-css-tips/#comments</comments>
		<pubDate>Mon, 14 Sep 2009 11:28:24 +0000</pubDate>
		<dc:creator>tsymonds</dc:creator>
				<category><![CDATA[Web Developement]]></category>
		<category><![CDATA[Cascading Style Sheet]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[HTML]]></category>
		<category><![CDATA[IE hacks]]></category>

		<guid isPermaLink="false">http://www.redaware.net/?p=118</guid>
		<description><![CDATA[When creating an external CSS(Cascading Style Sheet) it is advisable to stick to the following rules: You may, or may not be aware that it is possible to have “links” to several style sheets. It is sensible to take advantage of this and use filenames for different divisions or classes. The filename should end with [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>When creating an external CSS(Cascading Style Sheet) it is advisable to stick to the following rules:</p>
<p>You may, or may not be aware that it is possible to have “links” to several style sheets. It is sensible to take advantage of this and use filenames for different divisions or classes.</p>
<p>The filename should end with a .CSS extension.</p>
<p>If your website is hosted on a Linux server, please bear in mind that Linux filenames are case sensitive, so it is advisable to stick to only using lowercase. </p>
<p>Avoid using special characters and spaces in CSS filenames. Only use charaters a-z, number 0-9 and use underscore (_), or hyphens (-) in places of spaces.</p>
<p>Always check how your web pages will look in other version of Internet Explorer (IE).  If you need to make a CSS change that is only applicable to a specific browser version, use a conditional comment (see below) in your HTML source. Please remember that this is only applicable to Microsoft’s IE and cannot be used with other browsers link Firefox.</p>
<pre class="brush: xml; title: ; notranslate">
&lt;!--[if IE 7]&gt;
&lt;style type=&quot;text/css&quot;&gt;
body {background-image:url('bgdesert.jpg')}
&lt;/style&gt;
&lt;![endif]--&gt;
</pre>
<div class="shr-publisher-118"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.redaware.net/2009/09/5-css-tips/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>“Rebranding” SharePoint using Content Editor Web Part and CSS</title>
		<link>http://www.redaware.net/2009/08/%e2%80%9crebranding%e2%80%9d-sharepoint-using-content-editor-web-part-and-css/</link>
		<comments>http://www.redaware.net/2009/08/%e2%80%9crebranding%e2%80%9d-sharepoint-using-content-editor-web-part-and-css/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 14:26:26 +0000</pubDate>
		<dc:creator>tsymonds</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[Web Parts]]></category>
		<category><![CDATA[WSS 3.0]]></category>

		<guid isPermaLink="false">http://www.redaware.net/?p=94</guid>
		<description><![CDATA[As discussed in the SharePoint: Hide View All Site Content and Recycle Bin Post. The same instructions can be adapted to hide other unwanted SharePoint content. Below is a selection of CSS code that can be used to “rebrand” SharePoint using a Content Editor Web Part:]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>As discussed in the <a href="./2009/08/sharepoint-hide-view-all-site-content-and-recycle-bin/">SharePoint: Hide View All Site Content and Recycle Bin</a> Post. The same instructions can be adapted to hide other unwanted SharePoint content.</p>
<p>Below is a selection of CSS code that can be used to “rebrand” SharePoint using a Content Editor Web Part:</p>
<pre class="brush: css; title: ; notranslate">
&lt;style&gt;
/* breadcrumbs */
.ms-titlearea {
  display: none;
}
/* Tabs */
.ms-banner {
 display: none;
}
/* Title Bar */
.ms-pagetitle {
  display: none;
}
/* Search function */
.ms-searchform {
display: none
}
/* Welcome and help stuff */
.ms-globallinks {
 display: none
}
/* Remove shadings from right */
.ms-sitetitle {
     background-color: white
}
&lt;/style&gt;
</pre>
<div class="shr-publisher-94"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.redaware.net/2009/08/%e2%80%9crebranding%e2%80%9d-sharepoint-using-content-editor-web-part-and-css/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>SharePoint: Hide View All Site Content and Recycle Bin</title>
		<link>http://www.redaware.net/2009/08/sharepoint-hide-view-all-site-content-and-recycle-bin/</link>
		<comments>http://www.redaware.net/2009/08/sharepoint-hide-view-all-site-content-and-recycle-bin/#comments</comments>
		<pubDate>Wed, 05 Aug 2009 10:09:07 +0000</pubDate>
		<dc:creator>tsymonds</dc:creator>
				<category><![CDATA[Microsoft]]></category>
		<category><![CDATA[SharePoint]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[JavaScript]]></category>
		<category><![CDATA[Web Part]]></category>
		<category><![CDATA[WSS 3.0]]></category>

		<guid isPermaLink="false">http://www.redaware.net/?p=66</guid>
		<description><![CDATA[Sometimes it nessary to hide View All Site Content and the Recycle Bin on a SharePoint page. This can be accomplished by using a Web Part, CSS and JavaScript. Choose Site Actions, Edit Page. Add a new Content Editor Web Part(in Miscellaneous) to the page. Choose Edit, Modify Shared Web Part. Put the following two [...]]]></description>
			<content:encoded><![CDATA[<!-- Start Shareaholic LikeButtonSetTop Automatic --><!-- End Shareaholic LikeButtonSetTop Automatic --><p>Sometimes it nessary to hide View All Site Content and the Recycle Bin on a SharePoint page. This can be accomplished by using a Web Part, CSS and JavaScript.</p>
<p>Choose <strong>Site Actions</strong>, <strong>Edit Page</strong>.</p>
<div id="attachment_25" class="wp-caption aligncenter" style="width: 273px"><img src="http://www.redaware.net/wp-content/uploads/2009/08/PageEdit2.PNG" alt="SharePoint Edit Page" width="263" height="164" class="size-full wp-image-25" /><p class="wp-caption-text">SharePoint Edit Page</p></div>
<p>Add a new <strong>Content Editor Web Part</strong>(in Miscellaneous) to the page.</p>
<p>Choose <strong>Edit</strong>, <strong>Modify Shared Web Part</strong>.</p>
<div id="attachment_30" class="wp-caption aligncenter" style="width: 309px"><img src="http://www.redaware.net/wp-content/uploads/2009/08/ModWebPart.PNG" alt="Modify Shared Web Part" width="299" height="164" class="size-full wp-image-30" /><p class="wp-caption-text">Modify Shared Web Part</p></div>
<p>Put the following two code section into the <strong>Source Editor</strong>:</p>
<pre class="brush: css; title: ; notranslate">
&lt;style&gt;
.ms-navframe {
  display: none;
}
&lt;/style&gt;
</pre>
<pre class="brush: jscript; title: ; notranslate">
&lt;script language=&quot;JavaScript&quot;&gt;
document.getElementById('onettopnavbar1002-1').style.visibility='hidden';
document.getElementById('onettopnavbar1002-2').style.visibility='hidden';
document.getElementById('onettopnavbar1002-3').style.visibility='hidden';
document.getElementById('onettopnavbar1002-4').style.visibility='hidden';
&lt;/script&gt;
</pre>
<p>Choose the <strong>OK</strong> button and now the View All Contant and Recycle bin should disappear. </p>
<p><strong>Exit Edit Mode</strong> to complete.</p>
<div class="shr-publisher-66"></div><!-- Start Shareaholic LikeButtonSetBottom Automatic --><!-- End Shareaholic LikeButtonSetBottom Automatic -->]]></content:encoded>
			<wfw:commentRss>http://www.redaware.net/2009/08/sharepoint-hide-view-all-site-content-and-recycle-bin/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>

