• Resolved Gray Ghost Visuals

    (@grayghostvisuals)


    Preface:
    I am building a base plate WordPress theme and using the theme-unit-test.xml file for review.

    Question:
    The portion of the theme-unit-test where too many categories are displayed creates a scroll bar and overflow in the y-axis. Is there a way to break this up so the categories flow to a new line instead of staying on one?

Viewing 4 replies - 1 through 4 (of 4 total)
  • esmi

    (@esmi)

    I’d imagine that there’s a number of ways to do this depending on other CSS factors in the theme but I often use:

    <li class="cats"><?php _e('Filed under:', 'zenlite');?> <ul><li><?php the_category(',</li> <li>') ?></li></ul></li>

    Note the single space between </li> and <li>.

    Thread Starter Gray Ghost Visuals

    (@grayghostvisuals)

    Basically you Rock! Thanks :)p

    esmi

    (@esmi)

    Glad I could help. ??

    Thread Starter Gray Ghost Visuals

    (@grayghostvisuals)

    This issue has been resolved

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Breaking up too many categories for theme testing’ is closed to new replies.