<?xml version="1.0" encoding="utf-8"?>
<rss version="2.0"
    xmlns:dc="http://purl.org/dc/elements/1.1/"
     xmlns:admin="http://webns.net/mvcb/"
     xmlns:content="http://purl.org/rss/1.0/modules/content/"
     xmlns:rdf="http://www.w3.org/1999/02/22-rdf-syntax-ns#">
	<channel> 

	<title>Comments on: How can I edit this Wordpress theme?</title>
	<link>http://ask.metafilter.com/224846/How-can-I-edit-this-Wordpress-theme/</link>
	<description>Comments on Ask MetaFilter post How can I edit this Wordpress theme?</description>
	<pubDate>Wed, 19 Sep 2012 07:08:40 -0800</pubDate>
	<lastBuildDate>Wed, 19 Sep 2012 07:29:23 -0800</lastBuildDate>
	<language>en-us</language>
	<docs>http://blogs.law.harvard.edu/tech/rss</docs>
	<ttl>60</ttl>

	<item>
		<title>Question: How can I edit this Wordpress theme?</title>
		<link>http://ask.metafilter.com/224846/How-can-I-edit-this-Wordpress-theme</link>	
		<description>How can I edit &lt;a href=&quot;http://theme.wordpress.com/themes/oxygen/&quot;&gt;this&lt;/a&gt; wordpress theme? &lt;br /&gt;&lt;br /&gt; Hi everyone,&lt;br&gt;
&lt;br&gt;
I want to use this Wordpress theme as the basis for a website, although I&apos;d like to change a few things, specifically...&lt;br&gt;
&lt;br&gt;
1)  I&apos;d like the main feed to be significantly wider (at least 640px)&lt;br&gt;
&lt;br&gt;
2) Option to remove the left hand column&lt;br&gt;
&lt;br&gt;
3) Change the height / dimensions of the preview thumbnail images on the main page to be&lt;br&gt;
&lt;br&gt;
4) The ability to customise or use my own &quot;sharing&quot; buttons for Facebook, Twitter, etc.&lt;br&gt;
&lt;br&gt;
Any help would be much appreciated. And yes, I have already got the Custom CSS option on Wordpress.&lt;br&gt;
&lt;br&gt;
Thanks</description>
		<guid isPermaLink="false">post:ask.metafilter.com,2012:site.224846</guid>
		<pubDate>Wed, 19 Sep 2012 07:08:40 -0800</pubDate>
		<dc:creator>FuckingAwesome</dc:creator>
		
			<category>wordpress</category>
		
			<category>theme</category>
		
			<category>custom</category>
		
			<category>css</category>
		
			<category>oxygen</category>
		
	</item>
	<item>
		<title>By: fontophilic</title>
		<link>http://ask.metafilter.com/224846/How-can-I-edit-this-Wordpress-theme#3252271</link>	
		<description>Do you know how to write &lt;a href=&quot;http://www.w3schools.com/css/css_intro.asp&quot;&gt;CSS&lt;/a&gt; and HTML? Do you know how to add &lt;a href=&quot;http://codex.wordpress.org/Managing_Plugins&quot;&gt;Wordpress widgets/plugins&lt;/a&gt;?&lt;br&gt;
 &lt;br&gt;
All the stuff you&apos;ve asked is possible, but you&apos;ll need to brush up on some basic skills, if you don&apos;t have them already. &lt;a href=&quot;http://getfirebug.com/&quot;&gt;Firebug&lt;/a&gt; is a great way to start noodling around.&lt;br&gt;
&lt;br&gt;
I think you should understand that Oxygen is a responsive theme. This means it will adjust itself to look best on a phone/tablet/pc/whatever. Those tweaks might mess up the way it looks on a smaller screen. If you&apos;re just interested in sortof hacking this together to look good on a PC, then by all means, hack a way. Also, smart development would have you make a child theme, so that whenever this theme updates, you don&apos;t overwrite your work. But, again, depends on how much work you want to do.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2012:site.224846-3252271</guid>
		<pubDate>Wed, 19 Sep 2012 07:29:23 -0800</pubDate>
		<dc:creator>fontophilic</dc:creator>
	</item><item>
		<title>By: backwards guitar</title>
		<link>http://ask.metafilter.com/224846/How-can-I-edit-this-Wordpress-theme#3252305</link>	
		<description>It sounds like you&apos;re using wordpress.com and not wordpress.org, so you might be limited in some of your changes - even if you do have the the custom CSS option.  &lt;br&gt;
&lt;br&gt;
Use Firebug (linked above), or Chrome&apos;s Web Inspector.  Basically you right click on a section, select INSPECT ELEMENT, and then you&apos;ll see all the CSS that&apos;s applied to that specific section, or you&apos;ll see what the section&apos;s class or id is.  Then you can target that within your css.  for example you might remove the recent-posts widget with:&lt;br&gt;
&lt;br&gt;
&lt;code&gt;&lt;br&gt;
.widget_recent_entries { display: none; }&lt;br&gt;
&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
Something like changing the image thumbnails is a bit more difficult, because you can increase the size (which is percentage based, it looks like), but that might cause them to jump down to a second line because your percentages, added together,  will be greater than 100%.  There might be a setting on the backend to change that.</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2012:site.224846-3252305</guid>
		<pubDate>Wed, 19 Sep 2012 07:54:30 -0800</pubDate>
		<dc:creator>backwards guitar</dc:creator>
	</item><item>
		<title>By: Magnakai</title>
		<link>http://ask.metafilter.com/224846/How-can-I-edit-this-Wordpress-theme#3252365</link>	
		<description>The first two are easy. Add the following code:&lt;br&gt;
&lt;br&gt;
&lt;code&gt;&lt;br&gt;
#secondary&lt;br&gt;
{&lt;br&gt;
display: none;&lt;br&gt;
}&lt;br&gt;
&lt;br&gt;
.page-template-showcase-php #content-wrap&lt;br&gt;
{&lt;br&gt;
float: none;&lt;br&gt;
width: 100%;&lt;br&gt;
}&lt;br&gt;
&lt;br&gt;
#content &lt;br&gt;
{&lt;br&gt;
margin-left: 0;&lt;br&gt;
}&lt;br&gt;
&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
This makes the left hand bar invisible. That block has an ID of secondary, so I target the id with the # and then the name of the ID. Then I make the &apos;display&apos; property of #secondary equal to &apos;none&apos;. This takes it out of any layout equations.&lt;br&gt;
&lt;br&gt;
Now the left hand bar is gone, but there&apos;s a bit gap. If you look at the div with an id of &quot;content-wrap&quot;, you&apos;ll notice that it has a width of 77% and is floated right. Making the width of this 100% and removing it&apos;s float means that it sits at full width.&lt;br&gt;
&lt;br&gt;
Lastly, on pages that aren&apos;t the front, the layout&apos;s a bit different. The left hand bar will leave a significant gap. This is because there&apos;s a big margin making room for it in the #content section. Adjusting the left hand margin of said section will remove that issue.&lt;br&gt;
&lt;br&gt;
Now, unfortunately you&apos;re not going to be able to edit the size of the thumbnail images. Those are generated at that size and aspect ratio. You&apos;ll also notice that they&apos;re not taking up the amount of horizontal space that&apos;s allotted to them.. If you don&apos;t mind them being a bit blurry, you could add the following code:&lt;br&gt;
&lt;br&gt;
&lt;code&gt;&lt;br&gt;
.featured-image img.attachment-archive-thumbnail.wp-post-image &lt;br&gt;
{&lt;br&gt;
width: 100%;&lt;br&gt;
}&lt;br&gt;
&lt;/code&gt;&lt;br&gt;
&lt;br&gt;
This will ensure that they take up as much horizontal space as they are given.&lt;br&gt;
&lt;br&gt;
I&apos;m afraid I don&apos;t know about the sharing buttons on Wordpress.com. I suspect you&apos;re limited to the plugins that are available there. You may be able to customise them via Custom CSS, but without an example I really couldn&apos;t say.&lt;br&gt;
&lt;br&gt;
Good luck!</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2012:site.224846-3252365</guid>
		<pubDate>Wed, 19 Sep 2012 08:58:55 -0800</pubDate>
		<dc:creator>Magnakai</dc:creator>
	</item><item>
		<title>By: Magnakai</title>
		<link>http://ask.metafilter.com/224846/How-can-I-edit-this-Wordpress-theme#3252369</link>	
		<description>Oh, and let&apos;s not forget the big header image:&lt;br&gt;
&lt;br&gt;
&lt;code&gt;&lt;br&gt;
#featured-content img.attachment-featured-thumbnail.wp-post-image &lt;br&gt;
{&lt;br&gt;
width: 100%;&lt;br&gt;
}&lt;br&gt;
&lt;/code&gt;</description>
		<guid isPermaLink="false">comment:ask.metafilter.com,2012:site.224846-3252369</guid>
		<pubDate>Wed, 19 Sep 2012 09:00:57 -0800</pubDate>
		<dc:creator>Magnakai</dc:creator>
	</item>
	</channel>
</rss>
