johnpanz
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: All menu items are "current" on home page???So, nobody has any idea in regards to this issue? I still can’t figure it out?
Forum: Fixing WordPress
In reply to: All menu items are "current" on home page???I use home.php for my home page, with a few WP_queries on it.
Within my site, I use 5 different custom post types, and pages to form the basic structure of the site.
Below is a link to our old test site, which works fine, but I’m using it so you can see the structure of the site.
Test WebsiteThe top menu items, Machine Tools, Automation, etc… link to pages.
Forum: Fixing WordPress
In reply to: Custom Post Type and Slug conflictLegend! Started working straight away!
Forum: Themes and Templates
In reply to: Conditional CSS not working?Legend! Got it working, thanks!
Forum: Themes and Templates
In reply to: Category pages are breaking cssHi guys,
thanks for thw quick response, heres the site
http://test.accmfg.com.au/category/articles/
The other template pages show fine, and I have tested the code from other template pages, by removing all code from category.php and then pasting in the working code from another template and I get the same problem?
Here is one of the other pages using a page template
http://test.accmfg.com.au/about/I went through the validator, there were a few mistakes which I fixed up and it didn’t have any effect, I’ve gone through and check all the div’s and I’m pretty much 100% certain there are none missing.
I’ve also checked throught the posts, but they contain only text, and some bold and list tags.
Heres one of my working page templates.
<?php get_header(); ?> <div id="content"> <div id="contentleft"> <div class="postarea"> <?php include(TEMPLATEPATH."/breadcrumb.php");?> <h1><?php the_title(); ?></h1> <?php if (have_posts()) : while (have_posts()) : the_post(); ?> <?php the_content(__('Read more', 'studiopress'));?><div class="clear"></div><?php edit_post_link(__('(Edit)', 'studiopress'), '', ''); ?> <?php endwhile; else: ?> <p><?php _e('Sorry, no posts matched your criteria.', 'studiopress'); ?></p><?php endif; ?> </div> </div> <?php include(TEMPLATEPATH."/sidebar.php");?> </div> <?php // The main column ends ?> <?php get_footer(); ?>Any ideas? Do I need to poast any more of my code?