Michael Fields
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: To create a page with a list of posts in itYou don’t need to change the theme at all to fix the articles link.
1. Navigate to Settings -> Reading in your WordPress admin. The first set of options are “Front page displays”.
2. You want to select “A static page (select below)” for the radio button input.
3. Select “Home” for “Front page” and “Articles” for “Posts Page”.
4. Scroll down to the bottom and press “Save Changes”.
Forum: Fixing WordPress
In reply to: Extra space BELOW title in text widget??All of your widgets look properly spaced to me… What browser are you using? I checked in FF – IE6 and Safari – all look the same and all look good.
Forum: Fixing WordPress
In reply to: To create a page with a list of posts in itActually, you do not need a custom template for step one. That would be optional. If you already have a homepage that looks how you like… Just skip step one. You can skip step 3 also – use your Articles page instead.
For step 6: Select “Home” for “Front page” and “Articles” for “Posts Page”.
Forum: Plugins
In reply to: Plugin to Automatically resize images?WordPress does this without the need of a plugin. Log in to you admin and on the left sidebar bar (bottom) navigate to Settings -> Media, you can then control the sizes of your images.
Forum: Fixing WordPress
In reply to: To create a page with a list of posts in itI posted a pretty good explanantion of how to fix you navigation here.
As for the images, please see this thread.
Forum: Fixing WordPress
In reply to: Why my text widget wont work???Lorelle has written a pretty large article on this feedblitz. Might want to give it a read for ideas. To answer your question, some html elements are stipped for security reasons – among these elements are forms and iframes. Feedblitz uses a form – thus anything between the
<form>tags is removed.Forum: Everything else WordPress
In reply to: Adding posts to pages other than the home page…You could modify the loop in your theme’s index.php file to only show posts from the news category. See this page on query_posts().
Forum: Everything else WordPress
In reply to: Hello ALLHi Suzie!
Forum: Plugins
In reply to: How do I rearrange the page order?The Page Mash Plugin is the quickest way I have found.
Forum: Themes and Templates
In reply to: Need help with blog input w/ dreamweaver CS3The redban site uses this theme: http://blogtuine.com/post/374.php
Forum: Themes and Templates
In reply to: change bloginfo and customizing a stylesheet<?php bloginfo('template_url') ?>/rtl.cssForum: Themes and Templates
In reply to: drop down navigation no longer working with inove themeI’ve definitely had experiences where faulty html + css kill javascript functionality, but that is not what is causing your menu to fail… actually, it’s an easy fix, just open header.php and move this line (54):
<script type="text/javascript" src="<?php bloginfo('template_url'); ?>/js/menu.js"></script>below the
wp_head();hook and you should be fine. I’m not sure if this will cause other problems, but it worked for me.Forum: Themes and Templates
In reply to: themes won’t uploaddid you unzip/extract the files before you uploaded them to you server?
Forum: Themes and Templates
In reply to: Is wp_page_menu a replacement for wp_list_pages?Kenneth,
Not sure if this is a “replacement”, but it is a wrapper function for wp_list_pages() which offers some extra support for the “Home” page. Judging from the way the code is written, I doubt that this is meant to be a replacement – then again, who am I to say for sure 🙂Forum: Themes and Templates
In reply to: Width issue with woo themeDeclaring width or min-width on the “categories” id via CSS should do the trick. Min width can be tricky for good ‘ole IE6, here’s some reading:
http://www.webreference.com/programming/min-width/
http://www.cssplay.co.uk/boxes/minwidth.htmlAlso, See if the company can do this for you, you are paying them after all 🙂