• Hey all,
    I’m just picking my brain like crazy trying to figure out what is going on here…

    I’ve got this code:

    <?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
    <ul>
    <li><b>» <?php wp_register(); ?></b></li>
    <li>» <?php wp_loginout(); ?></li>
    </ul>
    	<?php wp_meta(); ?>
    
    	      <?php } ?>

    And I want it to render this:
    >> Site Admin
    >> Logout

    But it renders:
    >>
    >S>ite Admin (stacked)
    Logout

    Anyone know if this is the html or css? thanks

Viewing 4 replies - 1 through 4 (of 4 total)
  • it should be

    <?php /* If this is the frontpage */ if ( is_home() || is_page() ) { ?>
    
    <ul>
    <li><?php wp_register(); ?></li>
    <li><?php wp_loginout(); ?></li>
    </ul>
    	<?php wp_meta(); ?>

    ok. try this.

    Thread Starter woodman650

    (@woodman650)

    that works… =) but I can’t use the little “>>” symbol in front any way?

    Thread Starter woodman650

    (@woodman650)

    oh wait, in firefox the links are on top of each other, I mean, stacked in the same place. I wonder why they aren’t in a list… ??

    Thread Starter woodman650

    (@woodman650)

    nevermind, I fixed the stacking =)

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Quick CSS Problem…’ is closed to new replies.