ke vinritt
Forum Replies Created
-
Forum: Fixing WordPress
In reply to: latest blog posts with x amount of textok I added the excerpt function and it works the way I want. But I also want to add a ‘continue reading’ link at the end of the excerpt. I tried this
<?php the_excerpt(); <a href="<?php the_permalink(); ?>">read more ... </a>?>
but the read more is spaced too far below the text. Any idea how to move the link up? You can see it here
The site is hidden from the public so you’ll have to log in using username: testsite pw: nswd2009Forum: Fixing WordPress
In reply to: latest blog posts with x amount of textP.S. I’m not following you ??
Heh heh
Thanks again for your help – I’ll take a look at your suggestion and see what I can come up with.Forum: Fixing WordPress
In reply to: display latest 3 posts on home pageThat works – thanks offspring
Forum: Fixing WordPress
In reply to: css on post commentsGreat advice! Thanks again. In fact, I’ve started using the CSS Editor extension and Firebug for Firefox
Forum: Fixing WordPress
In reply to: css on post commentsThanks – I’ll try it.
So instead of changing the id and class names – just change the style and add it to the style sheet? Should have thought about that myself – thanks for the helpForum: Fixing WordPress
In reply to: css on post comments(dope slap) username is testsite and pw is nswd2009 sorry about that
Forum: Fixing WordPress
In reply to: css on post commentsThe strange thing is that the div ‘comment-2’ id or the ‘comment-body’ class are not in my css file. I used Firebug and saw these styles. Any idea what page I would open to edit the css on the blog page with comments?
Forum: Fixing WordPress
In reply to: css on post commentsI’ve searched everywhere for these ids and classes. Can anyone steer me in the right direction?
Forum: Fixing WordPress
In reply to: css on post commentsI believe it’s the single.php page – please correct me if I am wrong
But I do not see the ‘comment-2’ id or the ‘comment-body’ class and so onForum: Fixing WordPress
In reply to: multiple blogs on one siteCould I also just have separate categories instead of blogs? If you go here under projects you’ll see our blogs.
Forum: Fixing WordPress
In reply to: multiple blogs on one sitelooks like it will work – thank you
Forum: Fixing WordPress
In reply to: need help with comments-post page asapThe files I have are:
comments-popup.php
comments.php
footer.php
forum_post_page.php
functions.php
header.php
index.php
page.php
screenshot.jpg
sidebar.php
single.php
style.cssyes, the problem goes away if I change the theme.
Forum: Fixing WordPress
In reply to: need help with comments-post page asapHere’s what I have for single.php – seems to have what’s needed:
<?php get_header(); ?> <?php get_sidebar(); ?> <div class="single_post"> <?php if(have_posts()) : while(have_posts()) : the_post(); ?> <div id="page_title"><?php the_title(); ?></div> <div class="single_entry"> <em>Article posted on <?php the_time('l, F, jS, Y'); ?> at <?php the_time(); ?></em> <?php the_content(); ?> <?php the_tags(); ?> <div class="promote"> <div id="page_title">Enjoy This Article?</div> <p>Subscribe to our <a href="<?php bloginfo('rss2_url');?>">RSS Feed</a></p> </div> <?php if ( comments_open() && pings_open() ) { // Both Comments and Pings are open ?> You can <a href="#respond">leave a response</a>, or <a href="<?php trackback_url(); ?>" rel="trackback">trackback</a> from your own site. <?php } elseif ( !comments_open() && pings_open() ) { // Only Pings are Open ?> Responses are currently closed, but you can <a href="<?php trackback_url(); ?> " rel="trackback">trackback</a> from your own site. <?php } elseif ( comments_open() && !pings_open() ) { // Comments are open, Pings are not ?> You can skip to the end and leave a response. Pinging is currently not allowed. <?php } elseif ( !comments_open() && !pings_open() ) { // Neither Comments, nor Pings are open ?> Both comments and pings are currently closed. <?php } edit_post_link('Edit this entry','','.'); ?> <?php comments_template();?> </div> <?php endwhile; else: ?> <h3>Sorry but we could not find what you were looking for</h3> <div><?php get_search_form(); ?></div> <?php endif; ?> </div> <?php include(TEMPLATEPATH . '/footer.php');?>
Forum: Fixing WordPress
In reply to: register for blogshould I download another theme?
Forum: Fixing WordPress
In reply to: Gravatarsdoes anyone use gravatars?