• Resolved tfleming

    (@tfleming)


    As a new WPer using the Kubrick theme, and by no means a programmer, I need to know if it is possible to change the line under each post that points to comments, etc. The version I’m using includes “Posted in Uncategorized | No Comments” now. If possible, I’d like to remove the reference to categories (I don’t use them) and include permalink link (here as well as the title).

    Is this possible, and can someone explain in newbie-ese how to do it?

    Thanks,
    Tony

Viewing 7 replies - 1 through 7 (of 7 total)
  • Look in wp-content/themes/default/index.php, line 17

    change

    Posted in <?php the_category(', ') ?>

    to

    <a href="<?php the_permalink() ?>" rel="bookmark" title="Permanent Link to <?php the_title(); ?>"><?php the_title(); ?></a>

    or something else that suits your fancy.

    Thread Starter tfleming

    (@tfleming)

    Ah-ha! That’s perfect! Thanks, VaamYob!

    Cheers,
    Tony

    Thread Starter tfleming

    (@tfleming)

    OKay, another question about personalizing Kubrick. I’d like to stick a counter in the sidebar, but at the very bottom of the page. I’ve tried div and img align=bottom. No luck. What is the proper code to get it to pop up, but not under the usual sidebar items up top?

    I don’t get what you’re trying to do.

    Thread Starter tfleming

    (@tfleming)

    Take a look at http://www.unsg.org/action.html. There’s a counter on that page that I want to also place on the main page. But I would prefer if the counter sat at the bottom of the sidebar. Is there code that would make it jump to the bottom (leaving space between the RSS button and it) automatically, something like “align” or “div” (neither which seem to work).

    you can try something like (yeah, don’t complain to me about the poor separation of content/style):

    <div style="clear:both;">your counter stuff goes here</div>

    Thread Starter tfleming

    (@tfleming)

    Well, it didn’t do exactly what I wanted, but I made it work. Thanks for your help! Would never have figured that by myself.

    Any pointers on where to learn these tips and tricks?

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

The topic ‘Personalizing Kubrick’ is closed to new replies.