bozack
Forum Replies Created
-
anyone?
sorry heres the link.
https://soundbattleroyale.com/blog/?page_id=4the files get truncated to 151k files it seems instead of the full file.
Forum: Fixing WordPress
In reply to: pages not working when logged outnevermind i got it working, for some reason my pages werent actually published…
Forum: Themes and Templates
In reply to: custom pagesnevermind, i actually figured it out somehow…
but now i’d like it so that the pages don’t show up like the blog posts do. how do i change that, so each page is formatted as a blank page?
my code looks like this
<td><img src="<?php echo bloginfo('template_directory') . '/spacer.gif'; ?>" width="1" height="64" border="0" alt="" /></td> </tr> <tr> <td colspan="10" valign="top" bgcolor="#080405"><div id="main"> <?php if(have_posts()) : while(have_posts()) : the_post(); ?> <div class="post-item"> <p class="meta"><?php the_date(); ?></p> <h2><a>"><?php the_title(); ?></a></h2> <p class="meta2">posted by <?php the_author(); ?> in news</p> <?php the_content('Click here to read more...'); ?> <div class="numComments"> <a>"><?php comments_number('0 comments', '1 comment', '% comments'); ?></a> </div><!--end numComments--> </div><!--end post-item--> <?php endwhile; ?> <?php else :?> <p>No Results</p> <?php endif; ?>
Forum: Themes and Templates
In reply to: theme looks good in FF but horrible in IElooking at it in ie8, i’m finding it looks bad like in ie7.
if there’s a way to edit my original stylesheet so that its compatible in both browsers, how would i go about doing that?Forum: Themes and Templates
In reply to: widgets floating to the bottom of sidebar.worked like a charm!
you are the man!
thanks again!Forum: Themes and Templates
In reply to: posts from categories posting twicethanks brainycat!
i actually figured it out.
i had a line of code before the loop that was having it happen.
i took out `<?php query_posts(‘cat=4showposts=’.get_option(‘posts_per_page’)); ?>
`
and now its working perfectly!
thanks for checking it out though!Forum: Themes and Templates
In reply to: posts from categories posting twicebump!
Forum: Themes and Templates
In reply to: posts from categories posting twiceoh yeah here’s the code that i used!
<?php get_header(); ?> <div id="main"> <div id="primary"> <div class="title"> <img src="<?php echo bloginfo('template_directory') . '/img/brtv-title.gif' ?>" /> </div> <?php query_posts('cat=4&showposts='.get_option('posts_per_page')); ?> <?php if(have_posts()) : while(have_posts()) : the_post(); ?> <div class="post-item"> <h3><a href="<?php the_permalink(); ?>"><?php the_title(); ?></a></h3> <p class="meta">posted by <?php the_author();?> on <? the_date();?> in <?php the_category(', '); ?></p> <?php the_content('Click here to read more...');?> <div class="numComments"> <a href="<?php comments_link(); ?>"><?php comments_number('0 comments', '1 comment', '% comments'); ?></a> </div><!--end numComments--> </div><!--end post-item--> <?php endwhile; ?> <?php else : ?> <p>No Results</p> <?php endif; ?> <div id="morePrev"> <?php next_posts_link('Next...'); ?> <?php previous_posts_link('Previous...'); ?> </div><!--end morePrev--> </div><!--end primary--> <?php get_sidebar();?> </div><!--end main--> <?php get_footer();?>
Forum: Themes and Templates
In reply to: posts from categories posting twicethat actually works now…..kinda….
i notice now for some reason when i click on the next page,
it still shows the same blog entries in page 1.
why is that?Forum: Themes and Templates
In reply to: posts from categories posting twicewell i’d like it so i can add html to the top of the page (ie. catagory title header and description)
if i can do that with out creating a seperate page that would help.
Forum: Themes and Templates
In reply to: posts from categories posting twicehere is the code for my page.php
<?php get_header(); ?> <div id="main"> <div id="primary"> <div id="page_content2"> <?php if(have_posts()) : while(have_posts()) : the_post(); ?> <h3><a href="<?php the_permalink(); ?>"> </a></h3> <?php the_content('Click here to read more...');?> <?php endwhile; ?> <?php else : ?> <p>No Results</p> <?php endif; ?> </div><!--page_content2--> </div> <!--end primary--> <?php get_sidebar();?> </div> <!--end main--> <?php get_footer();?>
let me know what you find!
thanks ??Forum: Themes and Templates
In reply to: posts from categories posting twicereally?
cause i’m seeing duplicate posts at the end of the page in both firefox and safari.the duplicate posts, aren’t using the .post-item css for some reason either. =S
Forum: Themes and Templates
In reply to: equalling out columns to the bottom of the screen and more….i’ve fixed my image problem,
but if anyone can help me fix it so my main and side bar extend to the end of the page that would be greatly appreciated.
thanks!Forum: Themes and Templates
In reply to: equalling out columns to the bottom of the screen and more….nothing huh….