venustang
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Need help!!! How to hide the post based on the date?no one can help?
Forum: Fixing WordPress
In reply to: IE pushes the menu bar down the page a bit.display:inline will be make the ul change to horizontal. sometimes float left makes a lot of problems
Forum: Fixing WordPress
In reply to: IE pushes the menu bar down the page a bit.Sorry I am using mac so I couldnt really see your problem. But usually ie6 gives you double margin when you use float in css. You can try to use display: inline instead for your ul menu, or you try to use padding instead of margin. If you really need to use margin…. Here is the solution for margin… if your margin is 20px. so it is margin:20px and you need to place _margin:10px right after your margin:20px. This will make the ie6 looks as 20px like the other browser.
Forum: Fixing WordPress
In reply to: IE pushes the menu bar down the page a bit.is it ie6? did you use float in css for your navigation?
Forum: Plugins
In reply to: memberwings problemno one?
Forum: Fixing WordPress
In reply to: Displaying a single sub-catagory (excluding the others)Place this code
<?php if (is_category(12)) { ?> <?php $cat_object = $wp_query->get_queried_object(); $parentcat = ($cat_object->category_parent) ? $cat_object->category_parent : $cat; wp_list_categories("child_of=$parentcat&title_li="); ?> <?php } ?>
after
<?php $post = $posts[0]; // Hack. Set $post so that the_date() works. ?> <?php /* If this is a category archive */ if (is_category()) { ?>
in your archive.php
make sure you change your portfolio categories id.
I use this in my portfolio too. It shows the child categories of that parent categories. This should work.
Forum: Fixing WordPress
In reply to: Setting Up a Corporate BlogSorry I don’t mean for wp pages. You can just setup categories as a new blog. That is something I am doing right now for my blog.
Forum: Fixing WordPress
In reply to: Setting Up a Corporate BlogSet up different categories for your pages. Maybe there is more sub pages inside your telecom, you can setup a telecome categories and place some sub-categories inside telecom. Place your post within telecom, and then they will show up in telecom page (categories).
I am doing the same thing like you in my blog right now.
Forum: Fixing WordPress
In reply to: Adding a second blog to a websiteYes… you can make another separate page only show post from one or maybe more categories. If you don’t want that categories post show up on the front page. You can exclude that category posts. Can you tell me more about your new blog and the structure of your site? So I can provide a better solution.
Forum: Fixing WordPress
In reply to: Adding a second blog to a websiteCan you just make a new categories for you new blog? Just use another template for your new categories (blog).
Forum: Fixing WordPress
In reply to: diffenent posts number on different pages and categoriesJust place
<?php query_posts('cat=13&showposts=10'); ?>
before
<?php if (have_posts()) : ?>
Since I have few categories post on the index page. My news categories id is 13 and I want to show 10 post on news categories only.
I hope this could help other people as well.