dissurion
Forum Replies Created
-
Forum: Your WordPress
In reply to: My New Blog: ForgetTheBull.comI can’t seem to load the stylesheet. There’s only a page without style for me.
Forum: Fixing WordPress
In reply to: Conditionals Won’t Work!I’m not sure but I think the 2 query_posts do the same. Offset = 1 displays the most recent (1) I’ve read in the codex. I don’t see how this would be different from leaving it out. Did I misunderstood something?
Forum: Installing WordPress
In reply to: Call undefined function?This function is defined in wp_admin/admin-functions.php. You might want to try to reupload that file and see if that solves the problem.
Forum: Themes and Templates
In reply to: Have link list appear after first post.Use the loop with a counter ($i++) and if $i is equal to one (or zero, depends where you start) include the links list.
Forum: Fixing WordPress
In reply to: Nothing at all on my page :(What do you mean by posted a page and uploaded the file?
Forum: Alpha/Beta/RC
In reply to: pages giving 404thanks David House for fixing this
Forum: Alpha/Beta/RC
In reply to: pages giving 404I could perfectly reproduce this error on a RC1 but not on a RC3.
It still fails on my rc3 at home. It’s not a fresh install but upgraded from rc2 but I don’t think that has anything to do with it. I’ll try to test it again.
edit: still have this when I try to reproduce
Forum: Fixing WordPress
In reply to: Fatal error: Call to a member function on a non-objectOk, nm. One look at links.php where the get_linkcatname() resides solved it.
Forum: Fixing WordPress
In reply to: Space between posts and footerLook at the source of your page when it’s loaded. It’s there so it must be loaded from somewhere. From the placing I’d guess it would be from within your header.php template file.
Forum: Fixing WordPress
In reply to: synchronising localhost and live sitePC
Forum: Fixing WordPress
In reply to: Space between posts and footerI see it’s an inline style definition. Right above the </head> of your page and under the amazon stylesheet link you’ll see:
<style type=”text/css” media=”screen”>
.float-clear { clear:both; line-height: 6px; font-size: 6px; padding:0; margin: 0; }
.float-clear-left { clear:left; line-height: 6px; font-size: 6px; padding:0; margin: 0; }
</style>This is what causes it.
Forum: Fixing WordPress
In reply to: Space between posts and footerThe sidebar has the property float: left. This makes it floating to the left of the page. Now take a look at your <div class=”post”>. This is the div that contains other divs like your title, the content of the post etc. One other div that it contains is <div class=”float-clear”>. If you look in your stylesheet, you’ll see that it has a clear: both property. What this does it make sure that to the left and right of it, there’s no floating div. In your case, since the sidebar is floating to the left, it makes that it positions itself under the sidebar, the first spot it finds with no floating divs left and right.
I can’t really test it but I think that you may solve it by changing
.float-clear { clear:both; line-height: 6px; font-size: 6px; padding:0; margin: 0; }
clear:both to clear: right. I’m not 100% as I don’t know the layout that well but it’s worth a try.
Forum: Fixing WordPress
In reply to: get page idAppreciated. Thanks.
Forum: Fixing WordPress
In reply to: Space between posts and footerThink I get it. The bad guy is float-clear. It clears your sidebar. So the <div class=”float-clear”> will position itself right under the line where your sidebare ends.
Forum: Fixing WordPress
In reply to: Space between posts and footerIt seems only to happen in FF. Have you made changes to you template or css? And does this happen to every new post you make (just the top one)?