This Forum has been archived there is no more new posts or threads ... use this link to report any abusive content
==> Report abusive content in this page <==
Post Reply 
 
Thread Rating:
  • 0 Votes - 0 Average
  • 1
  • 2
  • 3
  • 4
  • 5
What html code allows you to align twitter widgets side by side in a website?
11-10-2012, 01:22 AM
Post: #1
What html code allows you to align twitter widgets side by side in a website?
Im in the middle of building a web page and I need to put 5 twitter widget side by side with about 5 pixels between each. I cant for the life of me figure out how to do this. I can get the first one to line up okay but when I go to place the second one in it goes beneath it. How do I fix this?

heres the code
<script src="http://widgets.twimg.com/j/2/widget.js"></script>
<script>
new TWTR.Widget({
version: 2,
type: 'profile',
rpp: 4,
interval: 6000,
width: 140,
height: 175,
theme: {
shell: {
background: '#333333',
color: '#ffffff'
},
tweets: {
background: '#000000',
color: '#ffffff',
links: '#4aed05'
}
},
features: {
scrollbar: false,
loop: false,
live: false,
hashtags: true,
timestamp: true,
avatars: false,
behavior: 'all'
}
}).render().setUser('billybsc').start();
</script>

Ads

Find all posts by this user
Quote this message in a reply
11-10-2012, 01:30 AM
Post: #2
 
You can try to put the scripts in a table like this:

<table cellspacing="5"><tr>
<td>code here</td>
<td>code here</td>
<td>code here</td>
<td>code here</td>
<td>code here</td>
</tr></table>

Ads

Find all posts by this user
Quote this message in a reply
Post Reply 


Forum Jump:


User(s) browsing this thread: 1 Guest(s)