• Resolved jazzgroup.nl

    (@jazzgroupnl)


    Hello,

    I’m using a theme that doesnt support widgets, therefore I’m using the php version of the shorthand:

    <?php echo do_shortcode(‘[kebo_tweets title=”Tweets” avatar=”on” count=”3″]’); ?>

    http://www.jazzgroup.nl

    The twitter posts display, but they become one long line. I would like to wrap the text, so add a few Returns in the text. So that the tweets stay on the left side of the screen.

    Even when I do add Returns in the original tweet, it still displays as a long line of text.

    Is there a solution for this?
    Thanks for the great plugin!!!! 🙂

    Caspar

    http://ww.wp.xz.cn/plugins/kebo-twitter-feed/

Viewing 6 replies - 1 through 6 (of 6 total)
  • Plugin Author Peter Booker

    (@peterbooker)

    Hi jazzgroup.nl,

    You could add a maximum width to the tweet container, adding some CSS like this to your theme:

    html body ul.kebo-tweets {
        max-width: 25%;
    }

    I love your site and how you are displaying the Tweets, very original!

    I just noticed the plugins stylesheet (css file) is not being added to the page, is this intentional?

    Thread Starter jazzgroup.nl

    (@jazzgroupnl)

    Thanks for the compliment!
    I didnt know that the css was not being added, it was not intentional….
    Do you think i should change it?

    Thread Starter jazzgroup.nl

    (@jazzgroupnl)

    It worked! Thanks. Can I change the font/colour in the same way?

    Plugin Author Peter Booker

    (@peterbooker)

    Hi Caspar,

    I am glad that worked, you can edit the other visual elements in a similar way.

    I have just had a look at the site and it appears that the theme might be missing an important function in the footer:

    <?php wp_footer(); ?>

    This allows WordPress and plugins to add CSS / JavaScript files to the page at the end of the page. Kebo Twitter Feed uses this to add its CSS file, so that seems to be why it is missing. Unfortunately, there is nothing I can do about that directly.

    Thread Starter jazzgroup.nl

    (@jazzgroupnl)

    Sorry if this is a dumb question, but where can I change attributes like font, size etc?
    Is it in the same ul.kebo-tweets section?

    Thanks

    Plugin Author Peter Booker

    (@peterbooker)

    Hi Caspar,

    Not a dumb question at all. You could use something like this:

    html body ul.kebo-tweets {
        font-family: Arial;
        font-size: 14px;
    }
Viewing 6 replies - 1 through 6 (of 6 total)

The topic ‘Text wrapping’ is closed to new replies.