Ryan Fitzer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Advanced Post EditingRead the full thread for your answer.
Forum: Plugins
In reply to: Images for list_catsYeah. I had a plugin written to do the job. I’ll get a link to it when I get back to the machine it’s on. Check back.
Forum: Plugins
In reply to: plugin to post topic by anyoneTry the Role Manager Plugin.
Forum: Fixing WordPress
In reply to: posts in another section (or page)?Sounds like the SideBlog plugin might do what you need.
http://katesgasis.com/2006/05/02/sideblog-plugin-v30/Forum: Plugins
In reply to: Lightbox Plugin Not Working When You click On Topic“they came up ok (centered, with page dimmed in background”
Yeah, that’s what I meant.
Forum: Fixing WordPress
In reply to: Works in firefox not in explorer???I get the “Sorry, no posts matched your criteria.” in both Firefox and IE.
Me too. FF/Mac
Forum: Themes and Templates
In reply to: Theme has disappeared.Seems to be working fine so I guess you fixed it?
Forum: Fixing WordPress
In reply to: Links no longer working in sidebarWorks for me. Did you fix it?
Forum: Themes and Templates
In reply to: HELP! – new theme prevents RSSMake a link like so
<a href="?feed=rss2" title="Subscribe to my feed">RSS</a>Forum: Themes and Templates
In reply to: HELP! – new theme prevents RSSForum: Fixing WordPress
In reply to: posts in another section (or page)?Create a category for this section. And then hard code a link into your navigation for the section. For example, a category called “News”. Create it, get the id# in your site admin an use it in the nav like so:
<a href="?cat=4" title="news">News</a>Forum: Fixing WordPress
In reply to: adjusting the width on the search boxFind this in your source
<form id="searchform" method="get" action="">
<div>
<input type="text" name="s" id="s" size="10" /><br />
<input type="submit" value="Go" />
</div>
</form>Change
size="10"to whatever suits your fancy. You can also change it via CSS by calling its id (#s).Forum: Themes and Templates
In reply to: Sidebar problemNo probs.
Forum: Fixing WordPress
In reply to: Writing topic problemsI’ve found that combining the RTE with CSS works really well. For example, using a plugin to activate a couple of TinyMCE’s feature’s (that WP has deactivated for some reason) can go a long way. Specifically the two select dropdowns (“format” and “style”). I put some css to handle images and h1-h6 in the worpress.css file (and style.css) located in the TinyMCE folder in the wp-admin directory. Now when I want to right justify (float) an image so the text wraps I click on the image and then hit the “style” dropdown and select “imgright”. It would be great if the wordpress.css file was accessible in the “presentation” section of the site admin so it would be easier to alter. I know XHTML pretty well but I find it valuable to be able to do everything I want with the RTE.
Forum: Plugins
In reply to: How to display all photos uploaded to a post via template tag?I vote for separate divs. It makes it much easier to style them as centered blocks like so (scroll down).