Ryan Fitzer
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Lost <p>The 8 or 9 css errors point to a scrollbar. As far as WP not inserting a closing
</p>, I’m not sure what could be causing this. If it were me, I would try installing a fresh copy of the most recent WP and see if that fixes it.Forum: Fixing WordPress
In reply to: Extra space after the closing </a> tag in wp_list_catsThanks for getting back to me. Boy, that’s like a needle in a haystack. No wonder it wasn’t happening on site where I floated the li elements. So I’m gonna float from now on! I’ve since reconfigured the links so that that it doesn’t make a difference. But thanks again for that obscure little rule. Here’s some very reliable css that I use for horizontal menus.
#nav {
height:2.2em;
padding:0 7px;
font-size:.85em
}#nav ul {
list-style:none;
display:inline;
}#nav ul li {
float:left;
}#nav a {
display:block;
line-height:2.2em;
padding:0 7px 0 7px;
}The last rule lets you create rollovers that fill the li. Here’s the site where I use it http://www.mountainviewcollege.edu/gallery/
Forum: Fixing WordPress
In reply to: Lost <p>You have margins for the top and bottom of your paragraphs set to 0 (not to mention your syntax is written incorrectly, no commas should separate the numbers and you need to specify a unit of measure [px]).
p { font-weight:normal;
font-size:13px;
font-family:arial;
text-align:justify;
line-height:normal;
margin:0,15,0,15;Fix your html errors. http://validator.w3.org/check?verbose=1&uri=http%3A%2F%2Fwww.boybeater.org%2Findex.php
And fix your css errors. http://jigsaw.w3.org/css-validator/validator?profile=css2&warning=2&uri=http%3A%2F%2Fwww.boybeater.org%2Findex.php
Once you get all of that stuff fixed then come back and let me know.
Forum: Fixing WordPress
In reply to: Lost <p>IE is not very reliable when it comes to rendering css. Download FireFox and check it on there. Always design for a modern browser and then go back and fix what you can for old browsers (IE).
Forum: Installing WordPress
In reply to: Parent Child Relationship- quick menu ??You need to add that functionality to single.php as well. You could also look into this great plugin.
Forum: Installing WordPress
In reply to: Categories function is not workingLooks like a permalink deal cause this link works http://www.jayateas.com/blog/?cat=1
Try the reverting to default permalink structure (I actually don’t know that much about custom permalinks) and then re-customizing them.
Forum: Fixing WordPress
In reply to: Link Problems After Creating A Static Front PageTry naming it home.php. WP looks for home.php first | Template Hierarchy
Forum: Plugins
In reply to: Images for list_catsThe only caveat of this plugin is that it filters both list_cats as well as wp_list_cats. If you want to use one or the other without the images somewhere on your site than this may not be for you. I’m looking into this to see if it can be altered to do just one or the other so one could use wp_list_cats in the standard way and list_cats when images are needed.
The codex has led me to believe that filtering list_cats will always extend to wp_list_cats. Anyone have any ideas on how to just filter one or the other?
Forum: Plugins
In reply to: Images for list_catsSorry it took so long. Here’s the plugin Vipers Category Icons. Replace the .txt with .php in the file name, drop it in your plugins folder and activate it.
Instructions on Usage:
- Create a directory in wp-content named catimages
- Name your images exactly the same name as the categories you want them to appear next to (if the category is News than name the image news.jpg) and drop them in the directory you created
- The
<img>element is given the class of catimage for styling
Go nuts and give thanks the kind Mr. Viper007Bond.
Forum: Fixing WordPress
In reply to: List Commenter’s MailsBy default, WordPress ask’s for a commentor’s email when they make a comment. If the user refuses to give it than that’s what they do. But if they do provide their, all yo have to do is go to your site admin and manage comments to see the addresses. This way the spam bots don’t get at them.
Forum: Fixing WordPress
In reply to: Table In Post!Use for the Exec-Php plugin. http://bluesome.net/post/2005/08/18/50/
Forum: Themes and Templates
In reply to: get_post and paragraph breaksChecked your code.
.excerpt p {
display:inline;
}*edited
Forum: Themes and Templates
In reply to: get_post and paragraph breaksFloat the thumb paragraph left.
p {
float:left;
}Forum: Fixing WordPress
In reply to: Table In Post!BTW, the only table elements I was using were
<table>, <tr>, <td>.Forum: Fixing WordPress
In reply to: Table In Post!Click on the HTML button in the RTE and paste it in. It’s worked for me in the past.