• On this page with the text, it is really long. See photo.

    If I keep number: 242 on the left, how do I add 243 on the right side?

    Thanks.

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

Viewing 3 replies - 1 through 3 (of 3 total)
  • Hi @jedicolin , Type this css code and your problem will be solved.

    article.single-page-article.clr .entry.clr p {
        float: left;
        display: inline-block;
        width: 50%;
    }
    
    article.single-page-article.clr .entry.clr p:first-child {
        float: left;
        width: 100%;
    }
    
    article.single-page-article.clr .entry.clr p:nth-child(2) {
        float: left;
        width: 100%;
    }
    Thread Starter jedicolin

    (@jedicolin)

    Thank you, it does work but on every page.

    I only want it on a couple of pages.

    No problem, you can use page ID to specify the css like below:

    .page-ID article.single-page-article.clr .entry.clr p {
        float: left;
        display: inline-block;
        width: 50%;
    }
    
    .page-ID article.single-page-article.clr .entry.clr p:first-child {
        float: left;
        width: 100%;
    }
    
    .page-ID article.single-page-article.clr .entry.clr p:nth-child(2) {
        float: left;
        width: 100%;
    }

    in the .page-ID change the ID with your page ID number & you’ll have it for specific page.

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