Joshua Sigar
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: how to make a category not show upGive the article a unique category. And then use the following plugin to exlude that certain category from main page.
http://dev.wp-plugins.org/file/front-page-cats/trunk/front_page_cats.php?rev=57&format=rawForum: Themes and Templates
In reply to: FREE! WP Theme ServiceGot a design, just don’t know how to get the code into it? See alphaoide.
Well, this is sort of my expectation. But, I don’t think most people are capable of mocking up like what RunningSpirit did. So, I’m lenient enough that you could just come up with some written, detailed, website concept of what goes where, provide me links to free images you want to use and I’ll make it happen for you.
But honestly, image manipulation/preparation takes most of the time of creating a wp theme. Probably, any of you graphic designer wants to lend some hands?
Forum: Fixing WordPress
In reply to: Show at most “1 days not working correctly.”No problem on my 1.5.1.3 as far as I can tell
Forum: Themes and Templates
In reply to: Post separatorsForget what I said in previous post.
Now, why do you want the divider to be outside “content?”
It’s supposed to be between “post”s and inside “content.” Unless you’re trying to accomplish something that I don’t follow.So far, Lorelle’s solution above sounds applicable for your purpose.
Forum: Themes and Templates
In reply to: Post separators…and going back in after the graphic
I’m not clear as to what you meant by that. ??Nonetheless, I may have a suggestion but I don’t think it’s easy for you. It’ll be your “full-time job.”
Do you know the CSS term “z-index,” “relative,” or “absolute” positioning? No?
Forum: Themes and Templates
In reply to: CSS IE, Firefox body not matchingIt looks completely the same to me
FF 1.0.4, IE 6, Win XP SP2Forum: Installing WordPress
In reply to: How Do I Make My Blog My Main Page?The following is the instruction.
http://wordpress.org/docs/installation/different-address/Forum: Fixing WordPress
In reply to: How to remove all the stats at the buttom ?It’s probably easier to just…
1. Copyindex.phpand rename it aspage.phpin the same folder.
2. Delete frompage.phpall the comment-related junk.
3. That’s it.Forum: Fixing WordPress
In reply to: How to remove all the stats at the buttom ?What files in your theme directory?
If you don’t have a file
page.phpthen you want to do something like the following inindex.php......
...blog content and other stuff
<?php if( !is_page() ) { ?>
// wrap all those comment stuff
// inside this if-statement
<?php } ?>
...
...footerForum: Everything else WordPress
In reply to: CSS wizard needed. (bbpress MOSTLY done.)In bbpress.css, you have the following
p, dl, textarea, li {
line-height: 150%;
}If you exclude the li, it will fix it, I suppose.
Forum: Installing WordPress
In reply to: Comment hijack…help!Just search the code of SK2 for that site and replace it with whatever you want (e.g. your homepage). (I guess, since I don’t use SK2.)
Does the comment still make it to moderation when the visitor gets redirected?
Forum: Installing WordPress
In reply to: Comment hijack…help!Do you have any comment-related plugin? It could be it.
I haven’t checked WP code, but I don’t think WP will do that.Forum: Everything else WordPress
In reply to: CSS wizard needed. (bbpress MOSTLY done.)how to kick the menu back into line
Please use standard english phrase/expression because I don’t get what you’re saying.make it behave like the one of the main site (size wise.)
So, make which one behave like which one of the main site?Are you referring to the following menu?
News Opportunity Gallery .....Forum: Themes and Templates
In reply to: Post separatorsWill that put the divider after the last post too?
Yes. But if you’re good enough, you could cover up the divider for the last post with the footer.Forum: Fixing WordPress
In reply to: Can I add color to the topic?Just wrap that specific post with a unique class/id and style it via CSS.