Peter Boosten
Forum Replies Created
-
Forum: Themes and Templates
In reply to: post per categoryYou want to limit the number of posts per category?
Peter
Forum: Themes and Templates
In reply to: hacking the default themeThat’s because the original background image (the one you’ve overwritten by your site_logo.png) looked like the site itself, and anything not shown by that image is now filled with background color #73A0C5 and a width of 758px.
You could remove that background color by removing this part
background: #73a0c5 url('images/kubrickheader.jpg') no-repeat bottom center;But what still will be left are the rounded corners on the top: this was part of the kubrickheader.jpg as well.
Peter
Forum: Themes and Templates
In reply to: How do i exclude part of the page template on post pages?Leave this part out from your single.php:
<div id="home"> <!-- BEGIN featured --> <div id="featured"> <h2>Featured News</h2> <?php $temp_query = $wp_query; query_posts(array('post__in'=>array(dp_settings('featured')))); if (have_posts()) : the_post(); ?> <div class="content"> <?php dp_attachment_image(0, 'thumbnail', 'alt="' . $post->post_title . '"'); ?> <h3>"><?php the_title(); ?></h3> <p class="date"><?php the_time('l, F j, Y') ?></p> <?php ob_start(); the_content(''); echo str_replace("\n", ' ', (dp_clean(ob_get_clean(), 700))); ?> </div> <div class="details"> " class="readmore">Read More ยป <p class="r">Filed Under: <?php the_category(', ') ?> <span class="comments"><?php comments_popup_link('No Comments', '1 Comment', '% Comments'); ?></span></p> </div> <?php endif; ?> </div> <!-- END featured --> <!-- BEGIN popular --> <div id="popular"> <h2>Popular Articles</h2> <?php dp_popular_posts(7); ?> </div><div class="break"></div> <!-- END popular --> </div> <!-- END home -->Peter
Forum: Themes and Templates
In reply to: TunePlus Theme’s IE BUGDo you have an url to your site?
Peter
Forum: Themes and Templates
In reply to: Custom template not working for my blog pageI haven’t got a clue what you’re actually writing here:
You have posts, and you have pages. While pages are more static, they can have custom templates assigned to them. A blog, made out of posts, is not affected by a custom template, since you cannot apply them to posts.
Can you please show us the site you’re writing about?
Peter
Forum: Themes and Templates
In reply to: Commnets Missing <br />Maybe for future reference, and for other people facing the same problem, you could show us what you found and fixed?
TIA
Peter
Forum: Themes and Templates
In reply to: Picture background many sizesI don’ understand what Esmi means, it’s the english ๐
His or yours? ๐
Anyway, I think you have to revert to special techniques involving jQuery for such special purposes.
Peter
Forum: Themes and Templates
In reply to: IE6 Float Issue HELPYou should fix the current code, before implementing new one.
There are some errors that need attention. In 99% of the cases fixes these kind of errors will take away floating issues in IE.
Peter
Forum: Themes and Templates
In reply to: IE6 Float Issue HELPForum: Themes and Templates
In reply to: Right hand side of posts hiddenI see it now, tried with IE8. The funniest thing however is that if you switch to compatibility mode, the site displays correct.
Try giving the content-body id (which really should be a class) an explicit width as well.
The sidebar is pushed to the left, probably because it hasn’t enough room to the right.
edit: I missed the width tag… sorry. I’ll start all over again.
Peter
Forum: Themes and Templates
In reply to: Right hand side of posts hiddenThe link requires some kind of authentication, so I cannot see.
Peter
Forum: Themes and Templates
In reply to: Right hand side of posts hiddenI see this, is that what you see as well?
Peter
Forum: Themes and Templates
In reply to: Right hand side of posts hiddenI cannot detect any text being cut off. What browser are you using?
Peter
Forum: Themes and Templates
In reply to: Picture background many sizesI think you missed esmi’s advice:
and an image that tiles seamlessly
What kind of background are you thinking of?
Peter
Forum: Themes and Templates
In reply to: Frames for ThumbnailsYeah,
Create a class definition in your stylesheet (style.css) like this:
.imgtfe { border: 1px solid #999999; padding: 4px; }Should do the trick. Maybe add some margin as well.
Peter