ryyo
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Display next post link only if there is a next postPerfect!
I had a feeling it was something simple like this.
Thanks a bunch!
Forum: Themes and Templates
In reply to: Header not showing up correctly in IE.. but perfect in FirefoxUnfortunately, IE does not support alpha .png files, that’s why the image looks correct in FireFox but not IE. One solution you can use for transparency with png-24 files is the IE alpha filter. Read about it here:
Forum: Fixing WordPress
In reply to: Sidebar falls to the bottom of postsYeah, a link would be very helpful. Viper has got the right idea: if your main content area is too wide, it’s likely that your sidebar is being pushed down (or “clearing” in CSS lingo).
Make sure your widths are compatible, and be aware that if you’re floating your sidebar, you may need to have your sidebar content come before your posts div, as floats display relative to the doument flow.
Forum: Fixing WordPress
In reply to: css questionYeah, it could be that your server is slow, or on the other hand, your connection might be bogged down. Are you running any torrents or anything? Try a bandwidth test to see how healthy your connection is.
Forum: Alpha/Beta/RC
In reply to: Retrieve User ID in 2.0 RC1Whoa, interesting! This may be just what I need, I’ll try it out right now.
[edit]
Terrific, that seems to have done it! Thanks a ton, I’m trying to get my site up by the end of the week and I was starting to fear that this was going to be a major hurdle.
Forum: Plugins
In reply to: Plugin wanted: Author Avatar (For site with multiple post authors)You can assign a style to the author image that will align it in the manner you’re asking about. Try giving the gravatar image a class=”gravatar” or putting it in a div with class=”gravatar”, then dropping in a CSS rule to float the image left:
img.gravatar
{
float:left;
margin:5px;
padding:0;
}or
div.gravatar img
{
float:left;
margin:5px;
padding:0;
}Make sure your image is directly before your text though, or it will appear below your post!