• I cannot get the twitter widget to align properly. It is shifted to the right on the sidebar. Here is the code

    <script src="https://widgets.twimg.com/j/2/widget.js"></script>
    <script>
    new TWTR.Widget({
    version: 2,
    type: 'profile',
    rpp: 3,
    interval: 6000,
    width:300,
    height:400,
    theme: {
    shell: {
    background: '#213e86',
    color: '#ffffff'
    },
    tweets: {
    background: '#ffffff',
    color: '#333333',
    links: '#213e86'
    }
    },
    features: {
    scrollbar: false,
    loop: false,
    live: false,
    hashtags: true,
    timestamp: true,
    avatars: true,
    behavior: 'all'
    }
    }).render().setUser('tdu2').start();
    </script>

    Here is my site that has this Issue
    Thanks in advance

Viewing 4 replies - 1 through 4 (of 4 total)
  • Your twitter widget is too large for the space it’s in.

    Your widget area appears to be automatically adding a little space to the left, but that’s normal.

    See the section that looks like…
    width:300,
    height:400,

    Try taking the width of your widget down to 250 and it should fit the space better… then tweek it from there.

    Let me know if that works.

    Thread Starter name456

    (@name456)

    Thanks I just tried it now but now the twitter feed does not look right.

    Yeah – you’re feed is putting a lot of space around the picture… Let me see if I can help you find a better feed.

    Thread Starter name456

    (@name456)

    Thank you very much

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘Official twitter Widget Issue’ is closed to new replies.