Forum Replies Created

Viewing 2 replies - 1 through 2 (of 2 total)
  • wp-content/themes/yourstyle/sidebar.php

    <?php wp_tag_cloud('smallest=8&largest=14&number=12&'); ?>

    I don’t use widgets but add code to sidebar.php for versatility so it may not help but full code to add tags is:

    <li>
    <h2>Tags</h2>
    <ul>
    <?php wp_tag_cloud('smallest=8&largest=14&number=12&'); ?>
    </ul>
    </li>

    small text size 8
    largest 14
    number of tags 12

    jrav001 nearly had it but use span with display:block; not div otherwise code will not validate ;)…

    PHP:

    <?php the_content('<span class="more">Read More &raquo; </span>'); ?>

    CSS:

    .more {
      display:block;
      margin-top:10px;
      text-align:right;
    }

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