Ryan Fitzer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: textarea tag not closing?I tried this peice of code as a test with no problems (in the html window:
<FORM action="http://somesite.com/prog/text-read" method="post">
<P>
<TEXTAREA name="thetext" rows="20" cols="80">
First line of initial text.
Second line of initial text.
</TEXTAREA>
<INPUT type="submit" value="Send"><INPUT type="reset">
</P>
</FORM>I know WP will strip out any empty elements. I’ve had to put
in places to get around this. You could also turn off the WYSIWYG editor when making the forms.Forum: Themes and Templates
In reply to: help make this list horizontalI’m assuming you talking about the little thumbnails towards the bottom? If so, the reason that is happening is that the images are nested in
<div>elements, which are block level elements. You can take them out of the<div>and it should go horizontal like you want it. If that is not an option you can simply use this rule:li div {
display:inline;
}This will only put two side by side as your containing element seems to have a defined witdh. Change that width and all should be fine.
Forum: Plugins
In reply to: Images for list_catsThanks for the help. I have checked out both of those plugins and from what I understand, the coffee2code is used to replace
the_category.The devcorner one is a bit of a mystery to me as I can not figure out how to use it. The documentation is very confusing. I don’t think it will work in the way I need either.
Both seem to be used for individual posts rather than the full listing of all categories. Thanks for all your help though. I’ll keep on looking.
Forum: Themes and Templates
In reply to: help make this list horizontalDo you have a link so we could see what html this script generates. If I understand it correctly, you could just adjust the css accordingly.
Forum: Requests and Feedback
In reply to: Bug? Formatting for object or embed tagsThe embed tag is a proprietary tag for Internet Explorer. As a result, pages that use them will not validate. I’m pretty sure WordPress will never support this tag as it is not valid html. There are plugins that make it easy to insert YouTube, Google and many more video formats though. The one I use is:
http://www.viper007bond.com/wordpress-plugins/vipers-video-quicktags/
If you do not want a plugin or would rather cut and paste code in as is, you can turn of the WYSIWYG editor before such a post.
Forum: Installing WordPress
In reply to: Error: “Error establishing a database connection”I’ve never tried it but this post my address you needs:
Forum: Themes and Templates
In reply to: How do i change width of autogenerated sidebartext ?Also, you will have the same problem on every the rest of the text in the sidebar when you have longer titles. If you alter the
#sidebarcss rule to look like this:#sidebar
{
padding: 20px 0 10px 0;
margin-left: 610px;
width: 130px;
}All I did was change the width from what you had (170px) to 130px.
Forum: Themes and Templates
In reply to: How do i change width of autogenerated sidebartext ?They are located in the conditional statements at the top of the
sidebar.phpfile.Forum: Plugins
In reply to: AJAX Drop Down About boxHere’s a link that shows how to do it with unobtrusive javascript. Keeps things nice and separate.
http://www.exit404.com/2005/57/unobtrusive-persistant-scriptaculous-effects
Forum: Plugins
In reply to: Images for list_catsTried to use the description box but quickly realized it’s only for the title attribute when one rolls over the link.
He’s a better idea of what I would like to do. Lets say I had a category named “Friends”. Then I would put all of my friends names as subcategories like so:
Friends
-John
-Bob
-Henry
-Sally
-CindyWhat I would like to do is have a picture of each friend to the left of their name. Then when you clicked on the parent category of “Friends” you would be see a list of all my friends with their pic next to their name. When you click on the pic or their name you would be taken to all the posts about them.
I know how to do everything except get the image in there.
I know the above example is super corny. It’s not actually what I’m doing but it works well for the description. The site will be a database of artists.
Forum: Plugins
In reply to: Images for list_catsThat sounds like a great idea. I’m assuming that the description text area accepts images. I never knew this.
By archives page I meant how all of the categories are listed in an unordered list on most themes. Just trying to be as descriptive as possible.
I’ll give this a try.
Forum: Plugins
In reply to: AJAX Drop Down About boxThis is a good place to start.
Forum: Fixing WordPress
In reply to: Category Style Messed UpYou need an element to clear your float. Plug this in in the proper place in your css to see what I mean:
.narrowcolumn {
float: left;
padding: 0 0 20px 50px;
margin: 0px 0 0;
width: 600px;
/* my edit */height:200px;
background:red;
}Here’s a link that will help.
Forum: Fixing WordPress
In reply to: XML parsing errorI went to this link with no problems. Is this the correct link?
Forum: Fixing WordPress
In reply to: Password Protect CategoriesYou could make a page template that only pulls certain categories into it and then password protect the page. I haven’t tried it but the Write>Page area has a sidebar section for password protection.