Try calling your header image with an absolute URL rather than a relative one.
Thread Starter
obvisu
(@obvisu)
The header’s not the problem, I can fix that by linking it as a direct path, like “http://wjarrie.com/reviewsoccer/wp-content/…” instead of “/images/header.gif”.
It’s the fact that when I post things, they double up on lines and shove the header way out of line, instead of just stacking down.
And that the text extends indefinitely to the right, as opposed to just filling in the content area.
Yeah I see the problem. Looking at your source a couple of things jump out. For starters, at the start of your posts I see this …
<div class="entry">
</div>
Then your post starts. You’re closing the content DIV prematurely. I also see a crap load of unclosed DIVs throughout your source code.
Thread Starter
obvisu
(@obvisu)
Hmm, but where would that be in the PHP files? In my page.php for the entry there’s:
<div class="entry">
<h3 class="entrytitle" id="post-<?php the_ID(); ?>"> <a href="<?php the_permalink() ?>" rel="bookmark">
<?php the_title(); ?>
</a> </h3>
<div class="entrymeta-single">
<?php
edit_post_link(__('<strong> Edit</strong>'));?>
</div>
<div class="entrybody">
<?php the_content(__('Read more »'));?>
</div>
<!--
<?php trackback_rdf(); ?>
-->
</div>
I’m looking at whatever template file is used to display this URL,
wjarrie.com/reviewsoccer
It would be either index.php or home.php (if you have a home.php)
Thread Starter
obvisu
(@obvisu)
Ahah! That fixed most of my problems.
Now, how can I get the text to stay within the limits of the content area, or are the limits just not set? I was trying to do this in a non-wordpress XHTML and CSS, and I couldn’t do it, but yet I see it done on every other wordpress blog.
If you see the page again, wjarrie.com/reviewsoccer, the keyboard mashing extends past the sidebar and underneath it.
Thread Starter
obvisu
(@obvisu)
Like, so it wrapped before the sidebar.