Ryan Fitzer
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Sidebar problemGive a height to the thumbs container.
.falbum-recent {
height:240px
}Forum: Themes and Templates
In reply to: Sidebar problemBTW, you also have a closing label
</label>tag stuck in your Search<h2>. That’ll screw it up on top of it all.Forum: Plugins
In reply to: How to display all photos uploaded to a post via template tag?Great idea. I would like to see this as well.
Forum: Themes and Templates
In reply to: Sidebar problemIt’s a CSS thing. Add this to your style sheet:
#searchform {
clear:both;
}Forum: Fixing WordPress
In reply to: Writing topic problemsWhat browser are you using?
Forum: Installing WordPress
In reply to: Photo Gallery For WordPressNot seen a plugin that would display like that.
Forum: Fixing WordPress
In reply to: Writing topic problemsAfter you put in the image, press return only once and see if that does it.
Forum: Fixing WordPress
In reply to: Call a 2nd Separate FooterThe is_single Conditional Tag would work for ya.
Forum: Installing WordPress
In reply to: Should I have an attachments.php file?If it isn’t, WordPress will use single.php.
Forum: Fixing WordPress
In reply to: Get a category’s title if you know the IDI found something that works here in the codex (I had passed it up earlier because it was stated that it needed to be used in the loop, although I’ve used it in the head with success). Here’s what it looks like:
<li class="<?php if (is_category('1')) { ?>current_page_item<?php } else { ?>page_item<?php } ?>"><a href="?cat=1"><?php
$cat = get_the_category(); $cat = $cat[0]; echo $cat->cat_name;
?></a></li>The only problem is I can’t figure out how to pass a specific cat ID to it. The above example will only return the first category. Anyone have any ideas?
Forum: Plugins
In reply to: Lightbox Plugin Not Working When You click On TopicThis link worked fine http://brownsista.com/janet-stops-by-106-park/#comments
Did you fix it?
Forum: Fixing WordPress
In reply to: Header disappears when mouse over links happensSounds like an IE problem, the Peak-a-boo bug.
Forum: Installing WordPress
In reply to: 1and1 setup problemsI use 1and1.com and set up a database through the 1and1 MySQL admin (you get 50 of ’em). Then installed WordPress manually. Doing it this way should solve most of the problems. Never tried their service.
Forum: Fixing WordPress
In reply to: Godaddy and Random File PluginOk, looked at the plugin and I’m not sure why your having this problem.
Forum: Fixing WordPress
In reply to: Godaddy and Random File PluginI don’t understand the virtual part(why do you need to do a virtual include when it should be in the plugins folder?) of the call to that plugin (c2c_random_file). Has the plugin been installed and actived properly. Call to undifined function means that there is no plugin to reference.