zeaks
Forum Replies Created
-
Forum: Themes and Templates
In reply to: widen 2011 themeThe page width in Twenty Eleven, depending on which layout you are using, is set by.
/* regular layouts */ #page { max-width: 1000px; } /* One column */ .one-column #page { max-width: 690px; }If you’ve already created your child theme, just add either of those to t, and set the max-width to whatever you want.
Forum: Themes and Templates
In reply to: 2011 Theme – Create different sidebarsEasiest way would be to use a plugin. Here’s a couple, I haven’t tried either.
http://wordpress.org/extend/plugins/widget-logic/
http://wordpress.org/extend/plugins/conditional-widgets/Forum: Themes and Templates
In reply to: Child Theme vs. Copy Entire Theme folderYou don’t need to copy the entire style.css, the only thing you need is a folder, and your own style.css with this info in it.
/* Theme Name: My Cool Theme Theme URI: http://yoursite/yourtheme Description: A child theme of 2010-11 default WordPress theme. Author: You Author url: http://yoursite.com/ Version: 1.0 Tags: black, blue, white, fixed-width, custom-header, theme-options Template: twentyeleven */ @import url("../twentyeleven/style.css");Then you add your custom CSS. (makes it much easier to see your changes than adding the entire stylesheet)
If you modify a file, for Example – In my theme I changed content.php to use excerpts on the main page.
So I Copied content.php to my child theme folder and made my changes to that.
Your child theme will use any files in its folder, if they are not there it will look to the parent theme and use those instead.
Forum: Themes and Templates
In reply to: [Twenty Eleven] A few changes I need help with.I made a child theme http://zeaks.org/nomnom-twenty-eleven-child-theme/ it has options to change the fonts, colors of several areas, the padding in the header is already reduced and has several other features you might find useful.
Forum: Themes and Templates
In reply to: Child Theme vs. Copy Entire Theme folderCopying the folder and renaming it is at least better than editing the original.
The best is to use a child theme, then your changes are easy to see, will never be overwritten during an upgrade of WordPress and your child theme will continue to receive updates to the parent theme.Forum: Themes and Templates
In reply to: [Twenty Ten Theme] Header issueMake sure you’ve cleared the cache from any plugins as well.
Forum: Plugins
In reply to: [BuySellAds] [Plugin: BuySellAds] keeps asking for site keySite key isn’t working for me.
Forum: Fixing WordPress
In reply to: AdSense To HeaderWhat Geeksfolder posted works, but the adsense should be placed inside the <div id=”nomnom-header”>, then use top: 0; and right: 0;
Forum: Themes and Templates
In reply to: Style.css edits don't show up? but then they do?Do you have any type of caching plugin? Some of them turn off cache for logged in users, which would explain why you can only see your changes when you’re logged in. W3 Total Cache does it I think. If you do, empty the cache and refresh your browser.
Forum: Themes and Templates
In reply to: Removing logo in Delicate themeName your new image logo.gif, overwrite or rename the original logo and it will use yours.
This still links to your old logo, so it hasn’t been overwritten yet.
http://sweepingtheusa.org/wp-content/themes/delicate/images/logo/logo.gifForum: Themes and Templates
In reply to: WordPress ignores child theme templatesIt’s in the root
Forum: Themes and Templates
In reply to: WordPress ignores child theme templatesI thought you might of been missing the template tag, but you’re not.
I created a child theme, and added a comment to header.php and it notices the changes. Here’s what I have at the top of the stylesheet.
/* Theme Name: Inline Child Theme Theme URI: http://mysite.com Author: Kermit the Frog Author URI: http://myurl.com Description: Inlne child theme Version: 1.0 License: GNU General Public License Tags: dark, light, white Template: inline */ @import url("../inline/style.css");I copied header.php over to the child theme folder, and added an echo, it showed up, then deleted header.php from the parent theme and it still works. http://twentyten.info
Forum: Themes and Templates
In reply to: WordPress ignores child theme templatesCan you link your style.css or site
Forum: Themes and Templates
In reply to: Removing logo in Delicate themeThe url for the image is wrong http://sweepingtheusa.org/wp-content/themes/logo.gif/images/logo/logo.gif
You have logo.gif in place of the theme name
It should probably be http://sweepingtheusa.org/wp-content/themes/delicate/images/logo/logo.gif
Forum: Themes and Templates
In reply to: Add message to respond boxThanks esmi