• When I go to any category on our blog site, I find the entries are jumbled up, as if WordPress wants to make them two columns. This is a fairly recent problem but it appears to be happening every time we sort entries by category. Regular entries on the front page of the site are fine. Any ideas? I need help! Thanks

    The page I need help with: [log in to see the link]

Viewing 3 replies - 1 through 3 (of 3 total)
  • The posts are not “jumbled up”, but are displayed in date order with the title section floated left and the content floated right.
    This is being done by your theme, so if you need to change it, ask at the theme’s support forum.

    try to add this via ‘Additional CSS’:

    .category article:after { content:'.'; display: block; clear: both; visibility: hidden; }

    is your theme using a custom page template to show the categories?
    this part of the body_class is indicating that: page-template-home-cvarcwp-www-wp-content-themes-twentyseventeen-page-php

    please contact the developer of your theme directly for help, as your theme seems to be heavily customized, although yuor theme is based on Twenty Seventeen

    Moderator bcworkz

    (@bcworkz)

    A possible quick and dirty fix is to add the following CSS to the Additional CSS panel:

    article {
        clear: both;
    }

    Your theme’s devs did not anticipate short articles with images. Like Joy said, the best approach is to leave it to theme devs so they can fix this for all users.

Viewing 3 replies - 1 through 3 (of 3 total)
  • The topic ‘Categories Jumble’ is closed to new replies.