<?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>Frumph.NET &#187; FAQ</title>
	<atom:link href="http://frumph.net/category/faq/feed/" rel="self" type="application/rss+xml" />
	<link>http://frumph.net</link>
	<description>I&#039;m in your site, touching your stuff.</description>
	<lastBuildDate>Wed, 28 Jul 2010 01:20:56 +0000</lastBuildDate>
	<language>en</language>
	<sy:updatePeriod>hourly</sy:updatePeriod>
	<sy:updateFrequency>1</sy:updateFrequency>
	<generator>http://wordpress.org/?v=3.0.1</generator>
		<item>
		<title>Creating a Custom Child Theme for ComicPress 2.9</title>
		<link>http://frumph.net/wordpress/faq/creating-a-custom-child-theme-for-comicpress-2-9/</link>
		<comments>http://frumph.net/wordpress/faq/creating-a-custom-child-theme-for-comicpress-2-9/#comments</comments>
		<pubDate>Sun, 21 Mar 2010 05:38:54 +0000</pubDate>
		<dc:creator>Phil (Frumph)</dc:creator>
				<category><![CDATA[FAQ]]></category>
		<category><![CDATA[Wordpress]]></category>
		<category><![CDATA[How-To]]></category>

		<guid isPermaLink="false">http://frumph.net/?p=496</guid>
		<description><![CDATA[As explained in the post: ComicPress 2.9 Parent -&#62; Child Theme Relationships, ComicPress 2.9 can now use Child Themes to customize your site with.   In this post I'm going to explain how to do that. The first step is to create a comicpress-&#60;childthemename&#62; directory.   You can look at the comicpress-silver and comicpress-boxed child themes as [...]]]></description>
			<content:encoded><![CDATA[<p>As explained in the post: <a href="http://frumph.net/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2ZydW1waC5uZXQvd29yZHByZXNzL2NvbWljcHJlc3MtMi05LXBhcmVudC1jaGlsZC10aGVtZS1yZWxhdGlvbnNoaXAv">ComicPress 2.9 Parent -&gt; Child Theme Relationships</a>, ComicPress 2.9 can now use Child Themes to customize your site with.   In this post I'm going to explain how to do that.<br />
<span id="more-496"></span><br />
The first step is to create a comicpress-&lt;childthemename&gt; directory.   You can look at the comicpress-silver and comicpress-boxed child themes as examples to how to do this.    On my site, I have the comicpress-frumph  directory name.</p>
<p>Inside the newly created directory under themes, in your installation, you're going to want to put a style.css file, .. mind you, this is *not* the original style.css that is inside the comicpress installed directory, this child theme style.css is unique to your custom theme.  Again, the best method would probably to take the style.css from inside of the comicpress-boxed.zip or comicpress-silver.zip and use that as a base.</p>
<p>Inside the child theme now, is the basic style.css for that child theme, at the top of that style.css should be this information:</p>
<pre class="brush: css;">
/*
Theme Name: ComicPress &lt;yourchildthemenamehere&gt;
Theme URI: http://comicpress.org
Template: comicpress
Description: Publish a comic with WordPress.  &lt;a href=&quot;http://comicpress.org&quot;&gt;Visit the ComicPress Website.&lt;/a&gt;
Author: &lt;who you are&gt;
Author URI: &lt;yourwebsitesurl&gt;
Version: 1.0
.
The CSS, XHTML and design is released under GPL v3:

http://www.opensource.org/licenses/gpl-3.0.html

.
*/

@import url(&quot;../comicpress/style.css&quot;);
</pre>
<p>The "Theme Name: ComicPress "  needs to be a unique name, pretty much denoting your comic/sites name as well as something identifying the directory name you chose.</p>
<p>This part, "Template: comicpress" means that the comicpress theme (/themes/comicpress/) is what is going to be used as the parent, and the "@import url("../comicpress/style.css");" means to use the style.css from inside the parent theme, then everything *after* that will be overrides or changes to that parent style sheet, pretty much like how you would use theme companion.</p>
<p>Now, your themes directory on your server looks something like this (using my frumph child theme as example):</p>
<pre class="brush: plain;">
/wp-content/themes/
/wp-content/themes/comicpress
/wp-content/themes/comicpress/* .. all the files used with comicpress parent.
/wp-content/themes/comicpress-frumph
/wp-content/themes/comicpress-frumph/style.css
</pre>
<p>When customizing your theme, all the 'new changes to the css' can go into the style.css of your custom child theme that you created, for example if you wanted to change the background of the body (using the frumph child theme example again):</p>
<pre class="brush: css;">
/*
Theme Name: ComicPress Frumph
Theme URI: http://comicpress.org
Template: comicpress
Description: Publish a comic with WordPress.  &lt;a href=&quot;http://comicpress.org&quot;&gt;Visit the ComicPress Website.&lt;/a&gt;
Author: Philip M. Hofer (Frumph)
Author URI: http://www.frumph.net/
Version: 1.0
.
The CSS, XHTML and design is released under GPL v3:

http://www.opensource.org/licenses/gpl-3.0.html

.
*/

@import url(&quot;../comicpress/style.css&quot;);

body {
	background: #271200 url('images/background.jpg') top center repeat-x;
}
</pre>
<p>Create an "images" directory inside the child theme and put the background.jpg inside of it.   Since I am "ONLY" putting changes that I want the CSS to have inside the child themes style.css and not the full replication of the original style.css, I can find the changes I made easily.   This also lets me upgrade ComicPress and use the original comicpress parent themes style.css without editing the original and making some horrible change that I won't be able to fix.  Since I am not touching the original there will not be that problem.</p>
<p>The directory structure looks like this:</p>
<pre class="brush: plain;">
/wp-content/themes/
/wp-content/themes/comicpress
/wp-content/themes/comicpress/* .. all the files used with comicpress parent.
/wp-content/themes/comicpress-frumph
/wp-content/themes/comicpress-frumph/style.css
/wp-content/themes/comicpress-frumph/images
/wp-content/themes/comicpress-frumph/images/background.jpg
</pre>
<p>Any images I create for my site, I will put inside of the images directory for the child theme.</p>
<div class="non-member"><p>There is Members Only content here.<br />To view this content you need to be a member of this site.</p></div>
 <img src="http://frumph.net/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=496" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://frumph.net/wordpress/faq/creating-a-custom-child-theme-for-comicpress-2-9/feed/</wfw:commentRss>
		<slash:comments>2</slash:comments>
		</item>
		<item>
		<title>ComicPress 2.9 CSS Overview &#8211; Part 6</title>
		<link>http://frumph.net/wordpress/faq/comicpress-2-9-css-overview-part-6/</link>
		<comments>http://frumph.net/wordpress/faq/comicpress-2-9-css-overview-part-6/#comments</comments>
		<pubDate>Sat, 05 Dec 2009 19:37:30 +0000</pubDate>
		<dc:creator>Phil (Frumph)</dc:creator>
				<category><![CDATA[FAQ]]></category>

		<guid isPermaLink="false">http://comicpresspremium.com/?p=122</guid>
		<description><![CDATA[#menubar / #sidebar-menubar There's a bit of logic used in the menubar area of the site design. First it defaults with the default menubar turned on and active.  Like all of the sidebar's #sidebar-menubar will not show unless there's a widget inside of it. You can disable the default menubar in the ComicPress Options, this [...]]]></description>
			<content:encoded><![CDATA[<h3>#menubar / #sidebar-menubar</h3>
<p><span id="more-122"></span></p>
<p>There's a bit of logic used in the menubar area of the site design.   First it defaults with the default menubar turned on and active.  Like all of the sidebar's #sidebar-menubar will not show unless there's a widget inside of it.</p>
<p>You can disable the default menubar in the ComicPress Options, this will let you not have it appear if you wish to use the ComicPress Menubar widget and place the menubar in any sidebar area on the side.</p>
<p>#menubar itself has just two unique areas inside of it.</p>
<pre class="brush: css;">
#menubar {
     #menunav {}
     #menu {}
}
</pre>
<p>The #menunav area contains the min-navigation, button for RSS and the search box if enabled, while the #menu area contains the home button, dynamically generated menu options based on the pages you create and the possibility of other menubar items if you created a links category called menubar and added links into it.</p>
 <img src="http://frumph.net/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=122" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://frumph.net/wordpress/faq/comicpress-2-9-css-overview-part-6/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ComicPress 2.9 CSS Overview – Part 5</title>
		<link>http://frumph.net/wordpress/faq/comicpress-2-9-css-overview-part-5/</link>
		<comments>http://frumph.net/wordpress/faq/comicpress-2-9-css-overview-part-5/#comments</comments>
		<pubDate>Sun, 29 Nov 2009 06:01:30 +0000</pubDate>
		<dc:creator>Phil (Frumph)</dc:creator>
				<category><![CDATA[FAQ]]></category>
		<category><![CDATA[#header]]></category>
		<category><![CDATA[#sidebar-header]]></category>
		<category><![CDATA[.headerpwad]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://comicpresspremium.com/?p=112</guid>
		<description><![CDATA[#header / #sidebar-header This area of the site code is a bit tricky. Sure you have the standard CSS that goes with it. First there's no default height or width in the header and the generic height is dependant on the page title - tagline. #header {} #header h1 a {} #header .description {} If [...]]]></description>
			<content:encoded><![CDATA[<h3>#header / #sidebar-header</h3>
<p><span id="more-112"></span></p>
<p>This area of the site code is a bit tricky.  Sure you have the standard CSS that goes with it.  First there's no default height or width in the header and the generic height is dependant on the page title - tagline.</p>
<pre class="brush: css;">
#header {}
	#header h1 a {}
	#header .description {}
</pre>
<p>If the Plugin Wonderful plugin is active and you set one of your ads as 'header' then it will open up another CSS element.</p>
<pre class="brush: css;">
	#header .headerpwad {}
</pre>
<p>Also if you decide to put anything into the Header sidebar area it will open up another css element inside of #header.  Which doesn't have any default styling.</p>
<pre class="brush: css;">
#sidebar-header {}
</pre>
<p><div class="non-member"><p>There is Members Only content here.<br />To view this content you need to be a member of this site.</p></div></pre>
 <img src="http://frumph.net/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=112" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://frumph.net/wordpress/faq/comicpress-2-9-css-overview-part-5/feed/</wfw:commentRss>
		<slash:comments>4</slash:comments>
		</item>
		<item>
		<title>ComicPress 2.9 CSS Overview &#8211; Part 4</title>
		<link>http://frumph.net/wordpress/faq/comicpress-2-9-css-overview-part-4/</link>
		<comments>http://frumph.net/wordpress/faq/comicpress-2-9-css-overview-part-4/#comments</comments>
		<pubDate>Sat, 28 Nov 2009 06:01:35 +0000</pubDate>
		<dc:creator>Phil (Frumph)</dc:creator>
				<category><![CDATA[FAQ]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[page]]></category>
		<category><![CDATA[page-wide]]></category>

		<guid isPermaLink="false">http://comicpresspremium.com/?p=60</guid>
		<description><![CDATA[#page {} / #page-wide These elements are what constrains your contents width. For the Standard and Vertical layouts it uses the #page and for all of the others it uses #page-wide. /* THE PAGE WRAPPER */ #page { width: 780px; margin: 0px auto; } #page-wide { width: 980px; margin: 0px auto; } If you edit [...]]]></description>
			<content:encoded><![CDATA[<h3>#page {} / #page-wide</h3>
<p><span id="more-60"></span><br />
These elements are what constrains your contents width.  For the Standard and Vertical layouts it uses the #page and for all of the others it uses #page-wide.</p>
<pre class="brush: css;">
/* THE PAGE WRAPPER */

#page {
	width: 780px;
	margin: 0px auto;
}

#page-wide {
	width: 980px;
	margin: 0px auto;
}
</pre>
<p>If you edit the width of the site make sure you remember to change the width of .narrowcolumn to compensate either larger or small width.</p>
<div class="non-member"><p>There is Members Only content here.<br />To view this content you need to be a member of this site.</p></div></pre>
 <img src="http://frumph.net/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=60" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://frumph.net/wordpress/faq/comicpress-2-9-css-overview-part-4/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ComicPress 2.9 CSS Overview &#8211; Part 3</title>
		<link>http://frumph.net/wordpress/faq/comicpress-2-9-css-overview-part-3/</link>
		<comments>http://frumph.net/wordpress/faq/comicpress-2-9-css-overview-part-3/#comments</comments>
		<pubDate>Fri, 27 Nov 2009 06:01:59 +0000</pubDate>
		<dc:creator>Phil (Frumph)</dc:creator>
				<category><![CDATA[FAQ]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[page-wide-wrap]]></category>
		<category><![CDATA[page-wrap]]></category>

		<guid isPermaLink="false">http://comicpresspremium.com/?p=57</guid>
		<description><![CDATA[#page-wrap {} / #page-wide-wrap {} These elements are a wrap around to #page and #page-wide. By default they do not actually contain anything inside it. However there are some cool things you can do with it, your #page and #page-wide contain the static width of either 780px or 980px and say you want to extend [...]]]></description>
			<content:encoded><![CDATA[<h3>#page-wrap {} / #page-wide-wrap {}</h3>
<p><span id="more-57"></span><br />
These elements are a wrap around to #page and #page-wide.  By default they do not actually contain anything inside it.</p>
<p>However there are some cool things you can do with it, your #page and #page-wide contain the static width of either 780px or 980px and say you want to extend the outside of that area by a few pixels and put something around the outside this is what you would use.</p>
<p>For example:</p>
<pre class="brush: css;">
#page-wide-wrap {
       padding: 0px 10px;
       background: #ccc;
}
</pre>
<p>This will make it so that there is a 10px outline on the left and right of the static width #page-wide area.  You can put a background there if you like, some people have put a background that repeat-y's down the side of the #page-wide like a drop shadow or some funkey design.</p>
<div class="non-member"><p>There is Members Only content here.<br />To view this content you need to be a member of this site.</p></div></pre>
 <img src="http://frumph.net/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=57" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://frumph.net/wordpress/faq/comicpress-2-9-css-overview-part-3/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ComicPress 2.9 CSS Overview &#8211; Part 2</title>
		<link>http://frumph.net/wordpress/faq/comicpress-2-9-css-overview-part-2/</link>
		<comments>http://frumph.net/wordpress/faq/comicpress-2-9-css-overview-part-2/#comments</comments>
		<pubDate>Thu, 26 Nov 2009 06:01:53 +0000</pubDate>
		<dc:creator>Phil (Frumph)</dc:creator>
				<category><![CDATA[FAQ]]></category>
		<category><![CDATA[body]]></category>
		<category><![CDATA[css]]></category>
		<category><![CDATA[sidebar-aboveheader]]></category>

		<guid isPermaLink="false">http://comicpresspremium.com/?p=54</guid>
		<description><![CDATA[body {} and #sidebar-aboveheader {} The body element is standard for all websites, it contains the default look and feel of the site which includes the text color and background of the entire area of the browser. Default elements that are not contained in the body {} but handle the sitewide look and feel are: [...]]]></description>
			<content:encoded><![CDATA[<h3>body {} and #sidebar-aboveheader {}</h3>
<p><span id="more-54"></span><br />
The body element is standard for all websites, it contains the default look and feel of the site which includes the text color and background of the entire area of the browser.</p>
<p>Default elements that are not contained in the body {} but handle the sitewide look and feel are:</p>
<ul>
<li>a
<ul>
<li>The link color.</li>
</ul>
</li>
<li>a:hover
<ul>
<li>The link hover color.</li>
</ul>
</li>
<li>a:focus</li>
<li>a img</li>
<li>p</li>
<li>img
<ul>
<li>Set's images max-width to 100% of the available space, it can resize images to fit in whatever css container it needs to.</li>
</ul>
</li>
<li>small</li>
<li>hr</li>
<li>blockquote</li>
<li>cite</li>
<li>acronym, abbr, span.caps</li>
<li>code</li>
<li>form</li>
<li>input, textarea</li>
</ul>
<p>Above the regular page of the website there's a sidebar that is not a part of the restrains.  #sidebar-aboveheader is like any of the other sidebars (except sidebar-left/right) where it contains:</p>
<ul>
<li>.customsidebar</li>
<li>.sidebar
<ul>
<li>The .sidebar is configurable to be used in the comicpress options.</li>
</ul>
</li>
</ul>
<p>More about the .sidebar code later.</p>
<div class="non-member"><p>There is Members Only content here.<br />To view this content you need to be a member of this site.</p></div></pre>
 <img src="http://frumph.net/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=54" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://frumph.net/wordpress/faq/comicpress-2-9-css-overview-part-2/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
		<item>
		<title>ComicPress 2.9 CSS Overview &#8211; Part 1 &#8211; Entity List</title>
		<link>http://frumph.net/wordpress/faq/comicpress-2-9-css-overview-part-1/</link>
		<comments>http://frumph.net/wordpress/faq/comicpress-2-9-css-overview-part-1/#comments</comments>
		<pubDate>Wed, 25 Nov 2009 06:01:31 +0000</pubDate>
		<dc:creator>Phil (Frumph)</dc:creator>
				<category><![CDATA[FAQ]]></category>
		<category><![CDATA[css]]></category>

		<guid isPermaLink="false">http://comicpresspremium.com/?p=50</guid>
		<description><![CDATA[Click on the area to go to the page that has a more descriptive explanation. body { } &#38; #sidebar-aboveheader #page-wrap {} / #page-wide-wrap {} #page {} / #page-wide #header / #sidebar-header #sidebar-menubar #menubar #content-wrapper #comic-head #sidebar-overcomic #sidebar-comicleft #comic #sidebar-comicright #sidebar-undercomic #subcontent-wrapper #sidebar-overblog #sidebar-left .narrowcolumn / .column #sidebar-right .comic-post #blogheader #sidebar-blog .uentry .post .entry #sidebar-underblog [...]]]></description>
			<content:encoded><![CDATA[<p><img class="aligncenter size-full wp-image-321" title="css3cdiagram" src="http://frumph.net/files/2009/12/css3cdiagram.png" alt="css3cdiagram" width="300" height="400" /></p>
<p><span id="more-50"></span></p>
<p style="text-align: left">Click on the area to go to the page that has a more descriptive explanation.</p>
<ol>
<li><a href="http://frumph.net/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2NvbWljcHJlc3NwcmVtaXVtLmNvbS9mYXEvY29taWNwcmVzcy0yLTktY3NzLW92ZXJ2aWV3LXBhcnQtMi8=">body { } &amp; #sidebar-aboveheader</a></li>
<li><a href="http://frumph.net/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2NvbWljcHJlc3NwcmVtaXVtLmNvbS9mYXEvY29taWNwcmVzcy0yLTktY3NzLW92ZXJ2aWV3LXBhcnQtMy8=">#page-wrap {} / #page-wide-wrap {}</a></li>
<li><a href="http://frumph.net/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2NvbWljcHJlc3NwcmVtaXVtLmNvbS9mYXEvY29taWNwcmVzcy0yLTnigKZ2ZXJ2aWV3LXBhcnQtNC8=">#page {} / #page-wide</a></li>
<li><a href="http://frumph.net/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2NvbWljcHJlc3NwcmVtaXVtLmNvbS9mYXEvY29taWNwcmVzcy0yLTktY3NzLW92ZXJ2aWV3LXBhcnQtNS8=">#header / #sidebar-header</a></li>
<li><a href="http://frumph.net/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?url=aHR0cDovL2NvbWljcHJlc3NwcmVtaXVtLmNvbS9mYXEvY29taWNwcmVzcy0yLTktY3NzLW92ZXJ2aWV3LXBhcnQtNi8=">#sidebar-menubar #menubar</a></li>
<li>#content-wrapper</li>
<li>#comic-head #sidebar-overcomic</li>
<li>#sidebar-comicleft</li>
<li>#comic</li>
<li>#sidebar-comicright</li>
<li>#sidebar-undercomic</li>
<li>#subcontent-wrapper</li>
<li>#sidebar-overblog</li>
<li>#sidebar-left</li>
<li>.narrowcolumn / .column</li>
<li>#sidebar-right</li>
<li>.comic-post</li>
<li>#blogheader</li>
<li>#sidebar-blog</li>
<li>.uentry .post .entry</li>
<li>#sidebar-underblog</li>
<li>#sidebar-footer</li>
<li>#footer</li>
</ol>
<ul>
<li>.sidebar</li>
</ul>
 <img src="http://frumph.net/wp-content/plugins/wordpress-feed-statistics/feed-statistics.php?view=1&post_id=50" width="1" height="1" style="display: none;" />]]></content:encoded>
			<wfw:commentRss>http://frumph.net/wordpress/faq/comicpress-2-9-css-overview-part-1/feed/</wfw:commentRss>
		<slash:comments>0</slash:comments>
		</item>
	</channel>
</rss>
