Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • look in your stylesheet.css for the locations.

    everywhere there color there will be something like #000000 or #FFFFFF those 6 digit patterns represent a color. if you know nothing your best best is to open up photoshop, type in one of the existing numbers in your stylesheet and see what color it is. from there choose a new color and plug the new 6 digits in there.

    look for h1 or h2 in your stylesheet as those are probably your headlines

    Thread Starter cookiescookies

    (@cookiescookies)

    so i did this so now it only shows the titles of the posts i want.
    then what do so that the newest post in this category is at the top and is the full post? i’m having trouble limiting it to 1 post..

    <?php get_header(); ?>
    
    <div id="container">
    
    		<?php if(have_posts()) : ?><?php while(have_posts()) : the_post(); ?>
    
    			<div class="post" id="post-<?php the_ID(); ?>">
    
    				<h2><a href="<?php the_permalink(); ?>" title="<?php the_title() ?>"><?php the_title(); ?></a></h2>
    
    			</div>
    
    		<?php endwhile; ?>
    
    				<div class="navigation">
    						<?php posts_nav_link(); ?>
    				</div>
    
    		<?php else : ?>
    
    				<div class="post">
    						<h2><?php_e('Not Found') ?></h2>
    				</div>
    
    		<?php endif; ?>
    
    </div>
    
    <?php get_sidebar(); ?>
    
    <?php get_footer(); ?>
    Thread Starter cookiescookies

    (@cookiescookies)

    thanks
    that solves half of my problem.

    my main page isn’t pointing at the category in question. it is using a plugin to only show the category that i want. your fix seems to fix the problem when i go to the actual category page. not the main page

Viewing 3 replies - 1 through 3 (of 3 total)