daiver
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: Nasty P (Sidebar problems)I’m still having this problem. Can anyone plase help me? I’m starting to pull off the hairs on my head. π
Forum: Fixing WordPress
In reply to: Nasty P (Sidebar problems)I validated with w3 and surely it gave me this error:
Error Line 129 column 31: document type does not allow element “ul” here; missing one of “object”, “applet”, “map”, “iframe”, “button”, “ins”, “del” start-tag.
<li class="pagenav"><h2>P
<ul><li class="page_item current_page_item"><a href="</code"></a></ul>
The problem is that I don’t know where to find it. I’ve searched every single PHP file and nothing turns up.
Forum: Fixing WordPress
In reply to: Nasty P (Sidebar problems)I still haven’t found it π
Forum: Fixing WordPress
In reply to: Nasty P (Sidebar problems)That line in the sidebar.php is exactly like you wrote it there. I really didn’t understad what’s in the link you posted, it’s like the Matrix to me.
Any other ideas?
Forum: Fixing WordPress
In reply to: Nasty P (Sidebar problems)So you’re saying that it has to be in the sidebar.php file? I’ll look again and replace whatever seems to be the problem then.
Forum: Fixing WordPress
In reply to: Nasty P (Sidebar problems)Alright, it’s http://www.indieradio.com.ar
I’m still searching for the problem and I can’t find it. It’s quite annoying.
Thanks!
Forum: Fixing WordPress
In reply to: Search results overshooting marginAha! That did it. I deactivated Markdown, whatever that is, and it was instantly fixed. Thanks!
Forum: Fixing WordPress
In reply to: Search results overshooting marginHere’s what search.php has:
<?php get_header(); ?>
<div id=”container”>
<div id=”topcontent”></div>
<div id=”singlecontent”>
<div class=”singlepost”>
<?php if (have_posts()) : ?>
<h2 class=”searchresult”>Search Results</h2>
<div class=”searchdetails”> Search results for “<?php echo “”.”$s”; ?>” </div>
<?php while (have_posts()) : the_post(); ?>
<h2 class=”searchresult”>
” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”>
<?php the_title(); ?>
</h2>
<div class=”searchinfo”><?php _e(“(“); ?> <?php the_category(‘ and’) ?> <?php _e(“)”); ?></div>
<div class=”clearer”> </div>
<?php the_excerpt() ?>
<div class=”searchinfo”>
” rel=”bookmark” title=”Permanent Link to <?php the_title(); ?>”>(to view associated entry please click here)
</div>
<?php endwhile; ?>
<?php else : ?>
Not Found
<?php endif; ?>
</div> <!– closes post div –>
<div class=”postnavigation”>
<div class=”right”>
<?php posts_nav_link(”,”,’previous posts + ΓΒ»’) ?>
</div>
<div class=”left”>
<?php posts_nav_link(”,’ΓΒ« + newer posts ‘,”) ?>
</div>
</div>
<div id=”bottomcontent”> </div>
</div> <!– closes content div –>
</div> <!– closes container div –>
<?php get_footer(); ?>I can’t seem to find it. This template is very good, excepto for this little thing that’s causing me a headache.
Forum: Fixing WordPress
In reply to: Search results overshooting marginAnyone?
Forum: Themes and Templates
In reply to: Justify text in postsOK. I found the solution. Thanks!
Forum: Themes and Templates
In reply to: Justify text in postsLorelle, I just write in spanish so I just want all posts to be justified. Cant beleive I cant find this on my own. lol
Forum: Themes and Templates
In reply to: Justify text in postsFound this:
#container {
width: 750px;
margin: 10px auto;
background: #f5f6f7;
border-left: 1px solid #d5d7db;
border-right: 1px solid #d5d7db;
font-family: Verdana, Arial, Helvetica, sans-serif;
font-size: .70em;
text-align: left; /* IE hack Part 2 */
border-top: 15px solid #d5d7db;
border-bottom: 15px solid #d5d7db;Could it be there?
Forum: Themes and Templates
In reply to: Justify text in postsWell, magic didnt happen. heh. Its still aligned left. I wonder if Rin places this code elsewhere.
Forum: Themes and Templates
In reply to: Justify text in postsJust put that in the bottom and the magic happens?
Forum: Themes and Templates
In reply to: Justify text in postsThis is what I have in my CSS:
#content {
float: right;
width: 500px;
background: #ffffff;
margin: 0 10px 0 0;
display: inline;
}How do I get it to justify? I cant seem to find that part that staritt posted.