<?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>bavotasan.com &#187; Background</title>
	<atom:link href="http://bavotasan.com/tag/background/feed/" rel="self" type="application/rss+xml" />
	<link>http://bavotasan.com</link>
	<description>by c.bavota</description>
	<lastBuildDate>Tue, 07 Feb 2012 15:42:10 +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>Full Size Background Image jQuery Plugin: Redux</title>
		<link>http://bavotasan.com/2011/full-sizebackground-image-jquery-plugin/</link>
		<comments>http://bavotasan.com/2011/full-sizebackground-image-jquery-plugin/#comments</comments>
		<pubDate>Mon, 07 Feb 2011 14:32:33 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Background]]></category>
		<category><![CDATA[background image]]></category>
		<category><![CDATA[jquery]]></category>
		<category><![CDATA[jquery plugin]]></category>
		<category><![CDATA[Plugin Code]]></category>

		<guid isPermaLink="false">http://bavotasan.com/?p=1748</guid>
		<description><![CDATA[I just made a few changed to this plugin because it was acting a little weird. Tested it in Safari, Chrome and Firefox and it work perfectly now. All you need is an image that you want to have displayed as your background. Once you have that and use the plugin, the image will resize [...]]]></description>
			<content:encoded><![CDATA[<p>I just made a few changed to this plugin because it was acting a little weird. Tested it in Safari, Chrome and Firefox and it work perfectly now.  All you need is an image that you want to have displayed as your background. Once you have that and use the plugin, the image will resize to the full width/height of the browser window. Every time the browser window resizes, so will the background image.</p>
<p>First comes the plugin code:</p>

<div class="wp_syntax"><table border='0' cellpadding='0' cellspacing='0'><tr><td><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #006600; font-style: italic;">/**
 * jQuery.fullBg
 * Version 1.0
 * Copyright (c) 2010 c.bavota - http://bavotasan.com
 * Dual licensed under MIT and GPL.
 * Date: 02/23/2010
**/</span>
<span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span>$<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
  $.<span style="color: #660066;">fn</span>.<span style="color: #660066;">fullBg</span> <span style="color: #339933;">=</span> <span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#123;</span>
    <span style="color: #003366; font-weight: bold;">var</span> bgImg <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span><span style="color: #000066; font-weight: bold;">this</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>		
&nbsp;
    <span style="color: #003366; font-weight: bold;">function</span> resizeImg<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      <span style="color: #003366; font-weight: bold;">var</span> imgwidth <span style="color: #339933;">=</span> bgImg.<span style="color: #660066;">width</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #003366; font-weight: bold;">var</span> imgheight <span style="color: #339933;">=</span> bgImg.<span style="color: #660066;">height</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
      <span style="color: #003366; font-weight: bold;">var</span> winwidth <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span>window<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">width</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #003366; font-weight: bold;">var</span> winheight <span style="color: #339933;">=</span> $<span style="color: #009900;">&#40;</span>window<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">height</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
      <span style="color: #003366; font-weight: bold;">var</span> widthratio <span style="color: #339933;">=</span> winwidth <span style="color: #339933;">/</span> imgwidth<span style="color: #339933;">;</span>
      <span style="color: #003366; font-weight: bold;">var</span> heightratio <span style="color: #339933;">=</span> winheight <span style="color: #339933;">/</span> imgheight<span style="color: #339933;">;</span>
&nbsp;
      <span style="color: #003366; font-weight: bold;">var</span> widthdiff <span style="color: #339933;">=</span> heightratio <span style="color: #339933;">*</span> imgwidth<span style="color: #339933;">;</span>
      <span style="color: #003366; font-weight: bold;">var</span> heightdiff <span style="color: #339933;">=</span> widthratio <span style="color: #339933;">*</span> imgheight<span style="color: #339933;">;</span>
&nbsp;
      <span style="color: #000066; font-weight: bold;">if</span><span style="color: #009900;">&#40;</span>heightdiff<span style="color: #339933;">&gt;</span>winheight<span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
        bgImg.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
          width<span style="color: #339933;">:</span> winwidth<span style="color: #339933;">+</span><span style="color: #3366CC;">'px'</span><span style="color: #339933;">,</span>
          height<span style="color: #339933;">:</span> heightdiff<span style="color: #339933;">+</span><span style="color: #3366CC;">'px'</span>
        <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
      <span style="color: #009900;">&#125;</span> <span style="color: #000066; font-weight: bold;">else</span> <span style="color: #009900;">&#123;</span>
        bgImg.<span style="color: #660066;">css</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#123;</span>
          width<span style="color: #339933;">:</span> widthdiff<span style="color: #339933;">+</span><span style="color: #3366CC;">'px'</span><span style="color: #339933;">,</span>
          height<span style="color: #339933;">:</span> winheight<span style="color: #339933;">+</span><span style="color: #3366CC;">'px'</span>
        <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>		
      <span style="color: #009900;">&#125;</span>
    <span style="color: #009900;">&#125;</span> 
    resizeImg<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    $<span style="color: #009900;">&#40;</span>window<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">resize</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
      resizeImg<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
    <span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span> 
  <span style="color: #009900;">&#125;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#40;</span>jQuery<span style="color: #009900;">&#41;</span></pre></div></td></tr></table></div>

<p>There is only a little CSS needed for this one:</p>

<div class="wp_syntax"><table border='0' cellpadding='0' cellspacing='0'><tr><td><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.fullBg</span> <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">overflow</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">hidden</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span>
&nbsp;
<span style="color: #cc00cc;">#maincontent</span> <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">absolute</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">z-index</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">50</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></td></tr></table></div>

<p>If you want your background to stay fixed you can change the .fullBG CSS to this:</p>

<div class="wp_syntax"><table border='0' cellpadding='0' cellspacing='0'><tr><td><div class="code"><pre class="css" style="font-family:monospace;"><span style="color: #6666ff;">.fullBg</span> <span style="color: #00AA00;">&#123;</span>
  <span style="color: #000000; font-weight: bold;">position</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">fixed</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">top</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">left</span><span style="color: #00AA00;">:</span> <span style="color: #cc66cc;">0</span><span style="color: #00AA00;">;</span>
  <span style="color: #000000; font-weight: bold;">overflow</span><span style="color: #00AA00;">:</span> <span style="color: #993333;">hidden</span><span style="color: #00AA00;">;</span>
<span style="color: #00AA00;">&#125;</span></pre></div></td></tr></table></div>

<p>For the HTML markup, you can just add an image tag with an id or class, but you also need to add a div that contains your main content or else it won&#8217;t work properly. This is the bare minimum:</p>

<div class="wp_syntax"><table border='0' cellpadding='0' cellspacing='0'><tr><td><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>img src<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;your-background-image.jpg&quot;</span> alt<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;&quot;</span> id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;background&quot;</span> <span style="color: #339933;">/&gt;</span>
<span style="color: #339933;">&lt;</span>div id<span style="color: #339933;">=</span><span style="color: #0000ff;">&quot;maincontent&quot;</span><span style="color: #339933;">&gt;</span>
  <span style="color: #339933;">&lt;!--</span> Your site content goes here <span style="color: #339933;">--&gt;</span>
<span style="color: #339933;">&lt;/</span>div<span style="color: #339933;">&gt;</span></pre></div></td></tr></table></div>

<p>To call the jQuery function, add this to the bottom of your web page, right before the closing body tag:</p>

<div class="wp_syntax"><table border='0' cellpadding='0' cellspacing='0'><tr><td><div class="code"><pre class="javascript" style="font-family:monospace;"><span style="color: #339933;">&lt;</span>script type<span style="color: #339933;">=</span><span style="color: #3366CC;">&quot;text/javascript&quot;</span><span style="color: #339933;">&gt;</span>
$<span style="color: #009900;">&#40;</span>window<span style="color: #009900;">&#41;</span>.<span style="color: #660066;">load</span><span style="color: #009900;">&#40;</span><span style="color: #003366; font-weight: bold;">function</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	$<span style="color: #009900;">&#40;</span><span style="color: #3366CC;">&quot;#background&quot;</span><span style="color: #009900;">&#41;</span>.<span style="color: #660066;">fullBg</span><span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #339933;">&lt;/</span>script<span style="color: #339933;">&gt;</span></pre></div></td></tr></table></div>

<p>Once again, this plugin is pretty simple so no options are available. It pretty much just does what it does.</p>
]]></content:encoded>
			<wfw:commentRss>http://bavotasan.com/2011/full-sizebackground-image-jquery-plugin/feed/</wfw:commentRss>
		<slash:comments>117</slash:comments>
		</item>
		<item>
		<title>How to Set a Default Custom Background in WordPress 3.0</title>
		<link>http://bavotasan.com/2010/default-custom-background-wordpress-3/</link>
		<comments>http://bavotasan.com/2010/default-custom-background-wordpress-3/#comments</comments>
		<pubDate>Tue, 30 Nov 2010 16:44:36 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[Background]]></category>
		<category><![CDATA[background color]]></category>
		<category><![CDATA[background image]]></category>
		<category><![CDATA[bg]]></category>
		<category><![CDATA[custom background editor]]></category>
		<category><![CDATA[functions.php]]></category>
		<category><![CDATA[wordpress 3]]></category>

		<guid isPermaLink="false">http://bavotasan.com/?p=3005</guid>
		<description><![CDATA[If you&#8217;re a theme developer and you want to allow users to set a custom background image or color, activating the feature in WordPress 3.0 is as simple as including one line of code in your functions.php file. If you want to have a default background image or color, it takes a bit more fiddling [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://bavotasan.com/wp-content/uploads/2010/11/bgpattern.jpg" alt="" title="bgpattern" width="200" height="150" class="alignright size-full wp-image-3007" />If you&#8217;re a theme developer and you want to allow users to set a custom background image or color, activating the feature in WordPress 3.0 is as simple as including one line of code in your <code>functions.php</code> file. If you want to have a default background image or color, it takes a bit more fiddling around to figure out exactly how to make it work. </p>
<p>I was able to get it working in a couple of my themes so I thought I would share my findings.</p>
<p>Setting up your theme just to use the custom background editor requires this in your <code>functions.php</code>:</p>

<div class="wp_syntax"><table border='0' cellpadding='0' cellspacing='0'><tr><td><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'add_custom_background'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	add_custom_background<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'set_theme_background'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
<span style="color: #009900;">&#125;</span></pre></div></td></tr></table></div>

<p>I like to use the if statement just in case people will be using your theme in an older version of WordPress. Without the if statement, the theme will break. Always think about backwards compatibility if that is important to your theme or to you.</p>
<p>Now, to set a default background, it takes a few more steps. Take a look at the code below:</p>

<div class="wp_syntax"><table border='0' cellpadding='0' cellspacing='0'><tr><td><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'add_custom_background'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
	add_custom_background<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'set_theme_background'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
	<span style="color: #000000; font-weight: bold;">function</span> set_theme_background<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
		<span style="color: #000088;">$bgimage</span> <span style="color: #339933;">=</span> get_background_image<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
		<span style="color: #000088;">$bgcolor</span> <span style="color: #339933;">=</span> get_background_color<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;style type='text/css'&gt;<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
&nbsp;
		<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$bgimage</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #000088;">$background_styles</span> <span style="color: #339933;">=</span> <span style="color: #0000ff;">'background-image: url(\''</span> <span style="color: #339933;">.</span> get_theme_mod<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'background_image'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">''</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'\');'</span>
			<span style="color: #339933;">.</span> <span style="color: #0000ff;">' background-repeat: '</span> <span style="color: #339933;">.</span> get_theme_mod<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'background_repeat'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'repeat'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">';'</span>
			<span style="color: #339933;">.</span> <span style="color: #0000ff;">' background-position: top '</span> <span style="color: #339933;">.</span> get_theme_mod<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'background_position_x'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'left'</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">.</span>  <span style="color: #0000ff;">';'</span> <span style="color: #339933;">.</span> <span style="color: #0000ff;">'background-attachment: '</span><span style="color: #339933;">.</span> get_theme_mod<span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'background_attachment'</span><span style="color: #339933;">,</span> <span style="color: #0000ff;">'scroll'</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span>
			<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;body { &quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$background_styles</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;); } <span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span> 
		<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #339933;">!</span><span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$bgcolor</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;body { background-color: #&quot;</span><span style="color: #339933;">.</span><span style="color: #000088;">$bgcolor</span><span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;; }; <span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
		<span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$bgimage</span><span style="color: #009900;">&#41;</span> <span style="color: #339933;">&amp;&amp;</span> <span style="color: #990000;">empty</span><span style="color: #009900;">&#40;</span><span style="color: #000088;">$bgcolor</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> <span style="color: #009900;">&#123;</span>
			<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;body { background: url(&quot;</span><span style="color: #339933;">.</span>THEME_URL<span style="color: #339933;">.</span><span style="color: #0000ff;">&quot;/images/bg.jpg); }<span style="color: #000099; font-weight: bold;">\n</span>&quot;</span><span style="color: #339933;">;</span>
		<span style="color: #009900;">&#125;</span>
		<span style="color: #b1b100;">echo</span> <span style="color: #0000ff;">&quot;&lt;/style&gt;&quot;</span><span style="color: #339933;">;</span>
	<span style="color: #009900;">&#125;</span>
<span style="color: #009900;">&#125;</span></pre></div></td></tr></table></div>

<p>This seems a bit sloppy but there are no real functions to gather some of this information so I had to string a lot of things together. What this script is doing, is gathering all the information that could be added by the custom background editor if your user is adding an image or a color. If neither is set, then you can set the default.</p>
<p>My default is an background image called <code>bg.jpg</code> that I have stored in my theme&#8217;s <code>/images</code> folder. You can also just set a color, or a large image with no reapeat. It&#8217;s totally up to you.</p>
]]></content:encoded>
			<wfw:commentRss>http://bavotasan.com/2010/default-custom-background-wordpress-3/feed/</wfw:commentRss>
		<slash:comments>1</slash:comments>
		</item>
		<item>
		<title>Magazine Basic v2.6 WordPress Theme</title>
		<link>http://bavotasan.com/2010/magazine-basic-free-wordpress-theme/</link>
		<comments>http://bavotasan.com/2010/magazine-basic-free-wordpress-theme/#comments</comments>
		<pubDate>Tue, 08 Jun 2010 13:05:03 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[ajax]]></category>
		<category><![CDATA[Background]]></category>
		<category><![CDATA[code]]></category>
		<category><![CDATA[download]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[engine]]></category>
		<category><![CDATA[engine v2]]></category>
		<category><![CDATA[Function]]></category>
		<category><![CDATA[magazine]]></category>
		<category><![CDATA[menu]]></category>
		<category><![CDATA[menu system]]></category>
		<category><![CDATA[New Features]]></category>
		<category><![CDATA[org]]></category>
		<category><![CDATA[system]]></category>
		<category><![CDATA[theme]]></category>
		<category><![CDATA[WordPress]]></category>

		<guid isPermaLink="false">http://bavotasan.com/?p=1488</guid>
		<description><![CDATA[Since I have been doing all this talking about WordPress 3.0, I thought it only fitting to start incorporating some if its features into my themes. The first theme to get the upgrade is Magazine Basic. Version 2.6 also has the Arturo Theme Engine v2.0 installed to give a smoother experience while configuring the theme [...]]]></description>
			<content:encoded><![CDATA[<p><img src="http://bavotasan.com/wp-content/uploads/2009/11/magabasi.png" alt="magabasi" title="magabasi" width="300" height="225" class="alignright size-full wp-image-1489" />Since I have been doing all this talking about WordPress 3.0, I thought it only fitting to start incorporating some if its features into my themes. The first theme to get the upgrade is <a href="http://themes.bavotasan.com/our-themes/basic-themes/magazine-basic">Magazine Basic</a>. Version 2.6 also has the Arturo Theme Engine v2.0 installed to give a smoother experience while configuring the theme options. The new MB is currently available for download off of <a href="http://wordpress.org/extend/themes/magazine-basic">WordPress.org</a>.<span id="more-1488"></span> </p>
<p>Here are a few of the new features:</p>
<ul>
<li>WordPress 3.0 menu system</li>
<li>WordPress 3.0 background editor</li>
<li>Arturo Theme Engine v2.0</li>
<li>Ajax save function</li>
<li>Cleaner code</li>
</ul>
]]></content:encoded>
			<wfw:commentRss>http://bavotasan.com/2010/magazine-basic-free-wordpress-theme/feed/</wfw:commentRss>
		<slash:comments>114</slash:comments>
		</item>
		<item>
		<title>WordPress 3.0: Activating the Background Editor</title>
		<link>http://bavotasan.com/2010/wordpress-3-activating-background-editor/</link>
		<comments>http://bavotasan.com/2010/wordpress-3-activating-background-editor/#comments</comments>
		<pubDate>Mon, 07 Jun 2010 21:31:39 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Tutorials]]></category>
		<category><![CDATA[admin user]]></category>
		<category><![CDATA[Background]]></category>
		<category><![CDATA[custom]]></category>
		<category><![CDATA[editor]]></category>
		<category><![CDATA[file]]></category>
		<category><![CDATA[Function]]></category>
		<category><![CDATA[line]]></category>
		<category><![CDATA[link]]></category>
		<category><![CDATA[panel]]></category>
		<category><![CDATA[Php]]></category>
		<category><![CDATA[Placing]]></category>
		<category><![CDATA[position]]></category>
		<category><![CDATA[site]]></category>
		<category><![CDATA[someone]]></category>
		<category><![CDATA[Wp]]></category>

		<guid isPermaLink="false">http://bavotasan.com/?p=2193</guid>
		<description><![CDATA[Adding a color or image to your Web site&#8217;s background is not a very complicated thing to do if you are familiar with CSS. Luckily for those out there who know nothing about CSS, WordPress 3.0 introduces a simple admin user-interface that makes it extremely simple to select a color or image for your background. [...]]]></description>
			<content:encoded><![CDATA[<p>Adding a color or image to your Web site&#8217;s background is not a very complicated thing to do if you are familiar with CSS. Luckily for those out there who know nothing about CSS, WordPress 3.0 introduces a simple admin user-interface that makes it extremely simple to select a color or image for your background. There are even controls for image position, repeating and attachment.<br />
<span id="more-2193"></span><br />
<div id="attachment_2194" class="wp-caption aligncenter" style="width: 570px"><img src="http://bavotasan.com/wp-content/uploads/2010/06/background.jpg" alt="" title="Background Editor" width="560" height="420" class="size-full wp-image-2194" /><p class="wp-caption-text">The new background editor in WordPress 3.0</p></div></p>
<p>Activating the background editor only requires that you add one line of code to your theme&#8217;s <code>functions.php</code> file.</p>

<div class="wp_syntax"><table border='0' cellpadding='0' cellspacing='0'><tr><td><div class="code"><pre class="php" style="font-family:monospace;"><span style="color: #b1b100;">if</span><span style="color: #009900;">&#40;</span><span style="color: #990000;">function_exists</span><span style="color: #009900;">&#40;</span><span style="color: #0000ff;">'add_custom_background'</span><span style="color: #009900;">&#41;</span><span style="color: #009900;">&#41;</span> add_custom_background<span style="color: #009900;">&#40;</span><span style="color: #009900;">&#41;</span><span style="color: #339933;">;</span></pre></div></td></tr></table></div>

<p>This will add the &#8220;Background&#8221; link to your Appearance panel in the wp-admin. Placing it inside the <code>function_exists()</code> function makes it backwards compatible in case someone uses your theme with WordPress 2.9.</p>
]]></content:encoded>
			<wfw:commentRss>http://bavotasan.com/2010/wordpress-3-activating-background-editor/feed/</wfw:commentRss>
		<slash:comments>14</slash:comments>
		</item>
		<item>
		<title>8 Free Colorful Background Textures for Designers</title>
		<link>http://bavotasan.com/2009/8-free-colorful-background-textures-for-designers/</link>
		<comments>http://bavotasan.com/2009/8-free-colorful-background-textures-for-designers/#comments</comments>
		<pubDate>Tue, 08 Sep 2009 17:16:49 +0000</pubDate>
		<dc:creator>c.bavota</dc:creator>
				<category><![CDATA[Downloads]]></category>
		<category><![CDATA[Background]]></category>
		<category><![CDATA[Black]]></category>
		<category><![CDATA[Blue]]></category>
		<category><![CDATA[collection]]></category>
		<category><![CDATA[Colors]]></category>
		<category><![CDATA[free]]></category>
		<category><![CDATA[image]]></category>
		<category><![CDATA[Images]]></category>
		<category><![CDATA[Photoshop]]></category>
		<category><![CDATA[Red]]></category>
		<category><![CDATA[site]]></category>

		<guid isPermaLink="false">http://bavotasan.com/?p=1123</guid>
		<description><![CDATA[Background textures are great when it comes to designing for the web. They can be used for site backgrounds, as overlays for images or whatever else your heart may desire. I decided to put together a colorful collection of 8 different textures in case anyone is in need. If you don&#8217;t like the colors, you [...]]]></description>
			<content:encoded><![CDATA[<p>Background textures are great when it comes to designing for the web. They can be used for site backgrounds, as overlays for images or whatever else your heart may desire. I decided to put together a colorful collection of 8 different textures in case anyone is in need.<br />
<span id="more-1123"></span><br />
If you don&#8217;t like the colors, you can easily change them with Photoshop by going to Image => Adjustments => Hue/Saturation.</p>
<div id="attachment_1124" class="wp-caption aligncenter" style="width: 560px"><a class="highslide" href="http://bavotasan.com/wp-content/uploads/2009/09/blue.jpg"><img src="http://bavotasan.com/wp-content/uploads/2009/09/blue-570x400.jpg" alt="Blue Diamonds" title="blue" width="550" class="size-medium wp-image-1124" /></a><p class="wp-caption-text">Blue Diamonds</p></div>
<div id="attachment_1126" class="wp-caption aligncenter" style="width: 560px"><a class="highslide" href="http://bavotasan.com/wp-content/uploads/2009/09/brown.jpg"><img src="http://bavotasan.com/wp-content/uploads/2009/09/brown-570x400.jpg" alt="Brown Scuffed" title="brown" width="550" class="size-medium wp-image-1126" /></a><p class="wp-caption-text">Brown Scuffed</p></div>
<div id="attachment_1132" class="wp-caption aligncenter" style="width: 560px"><a class="highslide" href="http://bavotasan.com/wp-content/uploads/2009/09/red.jpg"><img src="http://bavotasan.com/wp-content/uploads/2009/09/red-570x400.jpg" alt="Red Bubbles" title="red" width="550" class="size-medium wp-image-1132" /></a><p class="wp-caption-text">Red Bubbles</p></div>
<div id="attachment_1127" class="wp-caption aligncenter" style="width: 560px"><a class="highslide" href="http://bavotasan.com/wp-content/uploads/2009/09/black.jpg"><img src="http://bavotasan.com/wp-content/uploads/2009/09/black-570x400.jpg" alt="Black Corrode" title="black" width="550" class="size-medium wp-image-1127" /></a><p class="wp-caption-text">Black Corroded</p></div>
<div id="attachment_1129" class="wp-caption aligncenter" style="width: 560px"><a class="highslide" href="http://bavotasan.com/wp-content/uploads/2009/09/green.jpg"><img src="http://bavotasan.com/wp-content/uploads/2009/09/green-570x400.jpg" alt="Green Circuits" title="green" width="550" class="size-medium wp-image-1129" /></a><p class="wp-caption-text">Green Circuits</p></div>
<div id="attachment_1133" class="wp-caption aligncenter" style="width: 560px"><a class="highslide" href="http://bavotasan.com/wp-content/uploads/2009/09/orange.jpg"><img src="http://bavotasan.com/wp-content/uploads/2009/09/orange-570x400.jpg" alt="Orange Mosaic" title="orange" width="550" class="size-medium wp-image-1133" /></a><p class="wp-caption-text">Orange Mosaic</p></div>
<div id="attachment_1130" class="wp-caption aligncenter" style="width: 560px"><a class="highslide" href="http://bavotasan.com/wp-content/uploads/2009/09/purple.jpg"><img src="http://bavotasan.com/wp-content/uploads/2009/09/purple-570x400.jpg" alt="Purple Aged" title="purple" width="550" class="size-medium wp-image-1130" /></a><p class="wp-caption-text">Purple Aged</p></div>
<div id="attachment_1131" class="wp-caption aligncenter" style="width: 560px"><a class="highslide" href="http://bavotasan.com/wp-content/uploads/2009/09/yellow.jpg"><img src="http://bavotasan.com/wp-content/uploads/2009/09/yellow-570x400.jpg" alt="Yellow Crumpled" title="yellow" width="550" class="size-medium wp-image-1131" /></a><p class="wp-caption-text">Yellow Crumpled</p></div>
]]></content:encoded>
			<wfw:commentRss>http://bavotasan.com/2009/8-free-colorful-background-textures-for-designers/feed/</wfw:commentRss>
		<slash:comments>26</slash:comments>
		</item>
	</channel>
</rss>

