Viewing 8 replies - 1 through 8 (of 8 total)
  • Plugin Author Hector Cabrera

    (@hcabrera)

    Hi @kvv213,

    Your site is using some custom CSS rules that are the reason why this is happening.

    In /wp-content/themes/kvv213/wpp.css you have this:

    display: inline-block; tells the browser that the element (in this case one of your popular posts) should allow other elements to be positioned right next to it if there’s enough space (and there is, as you said the title is short enough for that), hence the reason why you’re seeing two posts on the same line.

    Remove that rule from your custom wpp.css stylesheet and that’ll fix the issue. This is how your custom CSS rules should look afterwards:

    .wpp-list li {
        float: none;
        clear: left;
        line-height: 1rem !important
    }

    Don’t forget to clear WP Super Cache’s cache so changes are applied to your website right away.

    Thread Starter kvv213

    (@kvv213)

    Hello Hector,

    That helped with the mentioned problem but instantly I got a new one. When I ‘comment’ this css rule the entire block was moved to the very below of the page.

    https://d.radikal.ru/d19/2106/70/298501f0d076.jpg

    Plugin Author Hector Cabrera

    (@hcabrera)

    No idea to be honest. I checked your site on three different browsers (Google Chrome, Firefox, and IE 11) and to me your sidebar displays normally.

    Thread Starter kvv213

    (@kvv213)

    Hector,
    May be the problem is in the size of the screen?

    I have large screens and the problem exists (Edge):
    https://d.radikal.ru/d34/2106/0c/6256f234c09c.jpg

    If I collapse the screen then it become normal.

    Plugin Author Hector Cabrera

    (@hcabrera)

    Just checked on Edge as well, resized the window several times. Same result: everything looks fine. My screen resolution is 1920×1080 if that helps.

    Thread Starter kvv213

    (@kvv213)

    Hector,
    Do you have an opportunity to open in on 4K?
    My smallest screen is 2560×1440. If I condense the screen of my browser then the situation goes to normal. But at wide screen it is a problem.

    Plugin Author Hector Cabrera

    (@hcabrera)

    Sorry, I can’t. I don’t have such a high-res screen available here.

    Plugin Author Hector Cabrera

    (@hcabrera)

    Marking as resolved due to inactivity.

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Two short titles are at the same string’ is closed to new replies.