csleh
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Show one post per subcategoryDo posts show on category page for you if there are no subcategories? I get a blank page when there aren’t subcategories.
Forum: Fixing WordPress
In reply to: Show one post per subcategorycode works brilliantly! Is there a way to show posts if there are no subcategories?
Forum: Fixing WordPress
In reply to: category template help – list all posts, not just 9jeepers I found it!!!
admin => settings => reading
“blog pages show at most” # posts
blog=category template here.
whew!
You don’t need to post long code in a question.
Looking at your site, there is an added bold note for every paragraph and line break:
<p><b>Well, I tso you won’t find it in the css, because it’s embedded in the html. It’s either in the template file, or added in each post. Check the html tab on a post
Forum: Themes and Templates
In reply to: Delete space between date and topic titleadd this somewhere in your style sheet:
h3.storytitle {margin-top:0;}You don’t need to paste all your code in a question.
Forum: Fixing WordPress
In reply to: Hide all pages menu navigation for a single category?The easiest thing to do would be create a custom category page, and don’t include the code for navigation.
This will help:
http://codex.wordpress.org/Category_TemplatesIf navigation is in the header, just take out the header link and copy all the content – except navigation- into the new category template file.
You might need a plugin like “force category template” to get the template to apply to posts (I needed it in wp 2.5, not sure now with 2.7)
Forum: Themes and Templates
In reply to: Display tags only if assigned to more than one postThank you!! Works perfectly
Forum: Themes and Templates
In reply to: h1 {display:none; header image is still behind WP imagego into the header template. find this line:
<style type="text/css" media="screen"> #page { background: url("http://blog.marvinlstorm.com/wp-content/themes/MarvinBlogTest/images/kubrickbgwide.jpg") repeat-y top; border: none; } </style>and delete it.
If the other image shows, you’re done!
Forum: Themes and Templates
In reply to: Advice on integrating WP into an existing site, bad idea?I’d recommend converting the whole site too, but if you don’t want to you can:
– install wordpress in a directory (don’t install in root or it will overwrite your home page. there’s probably a way around that but I don’t know. You could install in a folder called “blog”. The url would be http://www.mysite.com/blog/whatever)– take the appropriate bits from your site design and put into appropriate template files (header, footer, page, index, single, archives, sidebar)
– put in the appropriate functionality (the loop, along with things like the_content so your posts/pages show)
– in admin, figure out how you want to do the urls. I like pretty permalinks myself
– in your ‘regular’ site pages, add a link to the opening page of wordpress area, your wordpress home page (for example: http://www.mysite.com/blog/).
I’ve seen this done for sites using wordpress for only news items. but once you’ve gone through the theme building, you might as well make everything dynamic — and know it will always look the same too.
Forum: Themes and Templates
In reply to: h1 {display:none; header image is still behind WP imageit looks like this is hard-coded into your header file:
<style type="text/css" media="screen"> #page { background: url("http://blog.marvinlstorm.com/wp-content/themes/MarvinBlogTest/images/kubrickbgwide.jpg") repeat-y top; border: none; } </style>Also, I’m not sure about this:
http://blog.marvinlstorm.com/wp-content/themes/MarvinBlogTest/images/header-img.php?upper=5b5b5b&lower=282828
it doesn’t seem to be an image file (.jpg, .gif, .png) so I’d wonder about browser compatibility.Forum: Themes and Templates
In reply to: Small left margin, logo vs. title issueThis seemed to work for the white space issue:
add padding the div#wrapper in the style sheet
div#wrapper{margin:0px 0px 0px 20px;width:615px;background-color:#fff;padding:0 15px;}For the title bit, add
pxafter the negative margin so browsers know what you mean.Forum: Themes and Templates
In reply to: Use css in postings?You might also be interested in this Art Direction plugin:
Forum: Fixing WordPress
In reply to: Need to wrap text around imageIf you have clicked Appearance > Editor
the top of the page says “Edit Themes”
right below that it should say “Styleshett (style.css)
In the white window, go all the way to the bottom and paste the code
Now click “update File”visit your website. Make sure to press “refresh” on the browser window.
all should be dandy!
It looks like you were able to post to the stylesheet, but using the top code with “attachment_280”. At some point the div changed from “attachment_280” to “attachment_290”. so use the code just above. The entry img doesn’t seem to be on the stylesheet.
Forum: Themes and Templates
In reply to: How can I change the tabs on my template?no plugin, just find the id of the pages you want to exclude (or, alternatively, just the pages you want to INclude) and use the wp_list_pages options.
Read all about it here:
http://codex.wordpress.org/Template_Tags/wp_list_pagesForum: Fixing WordPress
In reply to: Need to wrap text around imageThe only thing that might NOT work is if images are sometimes in a different div, like if there’s one that’s called “attachment_140” or such.
try this:
#attachment_290, .entry img {float:left;padding:0 12px 0 0;}so any image inside the “entry” div is floated, allowing text to flow around it, with 12px of space to the right.
This worked on another page (with the wxyz reporter image) but the page noted above needs the #attachment_290 to work.