zeaks
Forum Replies Created
-
Forum: Themes and Templates
In reply to: sidebar theme problems content not 100% wideNp, glad it worked 🙂
Forum: Themes and Templates
In reply to: sidebar theme problems content not 100% wideTry using this for your no sidebar template http://pastebin.com/cepti9ZS
then use in your CSS
#wide-page .art-contentLayout .art-content { border: 0 none; float: left; margin: 0; overflow: hidden; padding: 0; position: relative; width: 766px; }Forum: Themes and Templates
In reply to: Removing logo in Delicate themeIt’s just an image, you could create a new image with your site name and overwrite it. It’s 260px × 90px name it logo.gif and place it in
/wp-content/themes/delicate/images/logo/Forum: Themes and Templates
In reply to: Remove white box on post in BuenoI don’t know anything about this theme, it looks like recent posts or something will appear in there but without editing any php files you can hide it with CSS.
.more_entries {display:none;}Forum: Themes and Templates
In reply to: Change font size post title, Weaver 2.2.4If you’re using weaver, you shouldn’t edit any CSS files. If you do, then the next time you upgrade it’ll be overwritten. There’s an area in Advanced Options you can add custom CSS just for things like this.
Between the <style> tags in the <head> section of advanced options adding something like this would change the “one response to hello world” font size.
h3#comments-title {font-size: 12px;}Weaver also has their own forums with hundreds of answers regarding that theme.
Forum: Themes and Templates
In reply to: Twenty Eleven Menu full ExtensionYour image is really high, try making it about 50px tall and use this for css.
#access { background: url(/fokas/wp-content/uploads/2011/08/Screen-Shot-2011-08-27-at-2.201.png); background-repeat: repeat-x; }Forum: Themes and Templates
In reply to: sidebar theme problems content not 100% wideit would probably be .art-content-wide .art-contentLayout but I’m not seeing the class in the page source. Could you link your page template on pastebin.com
Forum: Themes and Templates
In reply to: sidebar theme problems content not 100% wideIf you created the page template, then you can add a class to it just for that page. EX:
<div class="wide-page"> page loop </div>Then just use the above, but add .wide-page before it
Forum: Themes and Templates
In reply to: sidebar theme problems content not 100% wideTry changing the width here to 958px
.art-contentLayout .art-content { border: 0 none; float: left; margin: 0; overflow: hidden; padding: 0; position: relative; width: 766px; }If I understand you right, you didn’t need to add a secondary menu, you just needed to create a new menu in appearance > menus like you did.
The default custom menu widget doesn’t have a dropdown feature like what your asking about. Maybe there is a plugin that will do this though.
Forum: Themes and Templates
In reply to: 2010 Theme Post Excerpts?You could just use the <– more –> tag in your post, it will display the content up to that point. Or
I have a step by step guide here to create a child theme (basically what Ipstenu and esmi suggested), but it should be very easy to follow http://zeaks.org/child-theme-basics/
And here’s a post on making Twenty Ten use excerpts. http://zeaks.org/make-twenty-ten-use-excerpts/ the only thing in the
Forum: Themes and Templates
In reply to: is it possible to feature a custum banner on 2011? 1000 x100I just released a new child theme and it has an option to resize the header to whatever you like http://zeaks.org/nomnom-twenty-eleven-child-theme-v1-4/
Forum: Fixing WordPress
In reply to: How to collapse/expend posts once entering categories?You could create a category template for the specific category. I did the same thing you’re doing with my code snippets page a while ago. I only wanted the title to display on category pages.
Copy category.php and rename it category-12.php where 12 is the number of your category (can find that by visiting categories in admin and hovering over the category name), then just edit it however you want, removing the content of the post in your case.
Forum: Themes and Templates
In reply to: Twenty Elevel – 3 ColumnOk, figured this out..I think. Seems to work fine on my site so far. The sidebars fall into place nicely when the browser is resized.
I’ve created 3 layouts for Twenty Eleven sidebar left and right, 2 sidebars left, 2 sidebars right. I’ll be adding them to my child theme after I test them more and will have it available for download soon. http://zeaks.org you can see one of the layouts.
You can check the complete code out here for the left and right sidebar http://pastebin.com/iADZpFzG
If it seems to be missing anything, let me know, I took this from my child theme, so I could of overlooked something.
Forum: Plugins
In reply to: Theme specific pluginThanks Marventus, I don’t have the option for adding code to the theme though. I’m creating a plugin for a specific theme, that will only work with that theme, so I’d like for it to auto-disable itself if that certain theme is not active.