<?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>NewSourceMedia Blog &#187; CSS</title>
	<atom:link href="http://newsourcemedia.com/blog/category/css/feed/" rel="self" type="application/rss+xml" />
	<link>http://newsourcemedia.com/blog</link>
	<description>Focused on Interactive Design, Development and Marketing</description>
	<lastBuildDate>Fri, 30 Dec 2011 04:30:03 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.3</generator>
		<item>
		<title>CSS Center Web Page Using Styles Sheets</title>
		<link>http://newsourcemedia.com/blog/css-center-web-page-using-styles-sheets/</link>
		<comments>http://newsourcemedia.com/blog/css-center-web-page-using-styles-sheets/#comments</comments>
		<pubDate>Thu, 19 Nov 2009 14:43:08 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[Adjust Centering]]></category>
		<category><![CDATA[Auto Center]]></category>
		<category><![CDATA[Center]]></category>
		<category><![CDATA[Fix Centering]]></category>
		<category><![CDATA[width]]></category>

		<guid isPermaLink="false">http://newsourcemedia.com/blog/?p=619</guid>
		<description><![CDATA[How to center a fixed box container using CSS? The sample below dose a few things. First it centers all body content  using the body tag text-align center attribute. This is done to fix a bug in IE and other &#8230; <a href="http://newsourcemedia.com/blog/css-center-web-page-using-styles-sheets/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[How to center a fixed box container using CSS? The sample below dose a few things. First it centers all body content  using the body tag text-align center attribute. This is done to fix a bug in IE and other browsers that do not support margin auto styles. Next thing it will do is take your div with an id of "container" and auto center the margin with a width of 900 pixels. You can change the width to match your content as needed. Lastly it will reset the text to align left. You can align the text as you see fit but here we just wanted to make sure it set back to the default Firefox &amp; Safari text alignment.

Place the following code in your styles tag.

<code>body
{
text-align: center;
}</code>

div#container
{
margin-left: auto;
margin-right: auto;
width: 900px;
text-align: left;
}]]></content:encoded>
			<wfw:commentRss>http://newsourcemedia.com/blog/css-center-web-page-using-styles-sheets/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>Change CSS A HREF Link Styles</title>
		<link>http://newsourcemedia.com/blog/change-css-a-href-link-styles/</link>
		<comments>http://newsourcemedia.com/blog/change-css-a-href-link-styles/#comments</comments>
		<pubDate>Sun, 23 Dec 2007 00:22:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Link Styles]]></category>

		<guid isPermaLink="false">http://newsourcemedia.com/blog/2007/12/22/change-css-a-href-link-styles/</guid>
		<description><![CDATA[How to change hyperlink color styles Question: How do I change hyperlink color style of my html links? Answer: You can do this by adding CSS to your web page. Try the following to change the a href tages: &#60;style &#8230; <a href="http://newsourcemedia.com/blog/change-css-a-href-link-styles/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[How to change hyperlink color styles
<span id="more-158"></span>

<strong>Question:</strong> How do I change hyperlink color style of my html links?

<strong>Answer:</strong> You can do this by adding CSS to your web page. Try the following to change the a href tages:
<p class="code">&lt;style type="text/css"&gt;</p>

&lt;!—
a:link {
color: #333333;
}
a:visited {
color: #FFFFFF;
}
a:hover {
color: #CCCCCC;
background-color: #333333;
text-decoration: none;
}
a:active {
color: #333333;
}
--&gt;

&lt;/style&gt;

a:link is the links color
a:visited is the color for all links clicked
a:hover is the link style when your mouse hovers over the link.
A:active is the color when the link is active.

If you just want to make a simple color change to all your web links, just do:
<p class="code">&lt;style type="text/css"&gt;</p>

&lt;!—
a { color: #0099ff; }
--&gt;

&lt;/style&gt;

In other words, all links should be #0099ff or what ever color you chose regardless if you’ve visited or are hovering over a link or not.]]></content:encoded>
			<wfw:commentRss>http://newsourcemedia.com/blog/change-css-a-href-link-styles/feed/</wfw:commentRss>
		<slash:comments>6</slash:comments>
		</item>
		<item>
		<title>CSS Center Background Image</title>
		<link>http://newsourcemedia.com/blog/css-center-background-image/</link>
		<comments>http://newsourcemedia.com/blog/css-center-background-image/#comments</comments>
		<pubDate>Sun, 23 Dec 2007 00:22:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[Backgrounds]]></category>
		<category><![CDATA[background image]]></category>
		<category><![CDATA[centering]]></category>
		<category><![CDATA[CSS]]></category>
		<category><![CDATA[manage]]></category>
		<category><![CDATA[repeat center.]]></category>
		<category><![CDATA[repeat x]]></category>

		<guid isPermaLink="false">http://newsourcemedia.com/blog/2007/12/22/css-center-background-image/</guid>
		<description><![CDATA[How to center background images on web page. Question: How do I center the backgournd image on my web page so then when I change the window size, the image stays center under the content? Answer: Try using CSS (Cascading &#8230; <a href="http://newsourcemedia.com/blog/css-center-background-image/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[How to center background images on web page.
<span id="more-159"></span>

<strong>Question: </strong>How do I center the backgournd image on my web page so then when I change the window size, the image stays center under the content?

<strong>Answer:</strong> Try using CSS (Cascading Style Sheets) to manage your background images. The key is the “background-position:top center;”. This will do the trick. See below for an example.
<p class="code">&lt;style type="text/css"&gt;
&lt;!--
body{ font-size:x-small;
background-color:FFFFFF;
background-image:url(bg.jpg);
background-attachment:fixed;
background-repeat:repeat-y;
background-position:top center;
margin-top: 610px;}
--&gt;
&lt;/style&gt;

<strong>Note:</strong> Make sure to change the above "bg.jpg" to your background image path.]]></content:encoded>
			<wfw:commentRss>http://newsourcemedia.com/blog/css-center-background-image/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>CSS Shadow Text Effects</title>
		<link>http://newsourcemedia.com/blog/css-shadow-text-effects/</link>
		<comments>http://newsourcemedia.com/blog/css-shadow-text-effects/#comments</comments>
		<pubDate>Fri, 29 Dec 2006 00:22:11 +0000</pubDate>
		<dc:creator>admin</dc:creator>
				<category><![CDATA[CSS]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[effects]]></category>
		<category><![CDATA[shadow]]></category>
		<category><![CDATA[text]]></category>
		<category><![CDATA[tips]]></category>
		<category><![CDATA[tricks]]></category>

		<guid isPermaLink="false">http://newsourcemedia.com/blog/2006/12/28/css-shadow-text-effects/</guid>
		<description><![CDATA[Add cool shadows effects to your text using css codes Add cool shadows effects to your text using css codes to make the text more readable. Here is an example of light blue text with dark soft shadow. &#60;style type="text/css"&#62; &#8230; <a href="http://newsourcemedia.com/blog/css-shadow-text-effects/">Continue reading <span class="meta-nav">&#8594;</span></a>]]></description>
			<content:encoded><![CDATA[Add cool shadows effects to your text using css codes
<span id="more-174"></span>

Add cool shadows effects to your text using css codes to make the text more readable. Here is an example of light blue text with dark soft shadow.

<code> &lt;style type="text/css"&gt;</code>

h3 {color: #BDD6FF; text-shadow: black 0.1em 0.1em 0.2em}

&lt;/style&gt;]]></content:encoded>
			<wfw:commentRss>http://newsourcemedia.com/blog/css-shadow-text-effects/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
	</channel>
</rss>
<!-- WP Super Cache is installed but broken. The path to wp-cache-phase1.php in wp-content/advanced-cache.php must be fixed! -->
