Forums

Couple of short simple questions (3 posts)

  1. PRB11
    Member
    Posted 3 years ago #

    Some of these questions are probably very basic for some of the experts, but then that is why I have came here.

    the site is: http://www.cycleseen.com

    1. My main writing part of my blog the text is neatly formed down the right and left hand side. I notice this sometimes spreads the text out unevenly and I want it to be simply left aligned with no real care to indents on the right hand side (if that makes any sense).

    2. The gap between my posts is larger than I would like. Below is the code on the Main Page Template but I cant figure out what to change in order to bring the second post on the main page per say, to move up a little.

    <p class="postmetadata">Categories: <?php the_category(', ') ?> | <?php edit_post_link('Edit', '', ' | '); ?>  <?php comments_popup_link('0 Comments »', '1 Comment »', '% Comments »'); ?><font color="#666666">................................................................</font><p></div>
    		<?php endwhile; ?>
    		<div class="navigation">
    			<div class="alignleft"><?php previous_posts_link('&laquo; previous') ?></div>
    			<div class="alignright"><?php next_posts_link('next &raquo;') ?></div>
    		</div>

    3. How do I make it so that sub-categories are slightly indented to make people aware they are a sub category?

    4. Finally, What code do I edit to make the headings on the sidebar slightly smaller?

    Sorry for the questions, they are probably very basic but I cant get my head around the answers.

    Thanks

  2. ClaytonJames
    Member
    Posted 3 years ago #

    4. Finally, What code do I edit to make the headings on the sidebar slightly smaller?

    Find this in your .css under /* Begin Headers */

    #sidebar h2 {
    margin: 5px 0 0;
    padding: 0;
    }

    ...change it to this, adjust as required.

    #sidebar h2 {
    margin: 5px 0 0;
    padding: 0;
    font-size:1.5em;
    }

    Thats all I have... 1 out of 4 isn't bad, I guess. It should give you some ideas on where to look for paragraph formatting as well. Good luck!

  3. bekabug
    Member
    Posted 3 years ago #

    1. .post is set to justify. You may want to undo that and see if it alleviates the weird spacing issues you're having.

    2. `<font color="#666666">.................................................................................................................</font>
    <p/></div>`

    I'd get rid of that < p/ > and see if you are able to get somewhere.

    3. WordPress should nest them for you. Check wp_list_categories in the Codex.

Topic Closed

This topic has been closed to new replies.

About this Topic

Tags

No tags yet.