[twitter-dev] position of the widget

2010-06-24 Thread André Luís Moura Lima
Hello,
anyone knows if there is any attribute to set the position of the twitter
widget??I need to put my widget code inside a div.


[twitter-dev] Re: position of the widget

2010-06-24 Thread André Luís Moura Lima
I have the following div and I want my widget inside of this div...here is
the css of the twitter div:
.twitter{
background: url(../images/bg/bg_twitter.gif) 0 0 no-repeat;
width: 207px;
height: 276px;
float: left;

}
here is the code of the div:
div class=twitter
ul
li@virtumony Lançamento!! 24/05/2010!! Aguardem...
br / spanAbout 6 hours ago/span/li
/ul
 /div
if someone can help me...i already putted the twitter code inside the div
but the result was very ugly...is there an attribute to the widget
positon,anyone knows a solution??

2010/6/24 André Luís Moura Lima azdr3mi...@gmail.com

 Hello,
 anyone knows if there is any attribute to set the position of the twitter
 widget??I need to put my widget code inside a div.



[twitter-dev] twitter widget modifications

2010-06-24 Thread André Luís Moura Lima
Hello,
I want to do some modifications on my twitter widget,to be more specific I
want to do some changes on widget.js code...i want no foot on the widget and
also want to change the picture and the user name behaviors.I will
explain:instead of the name of the user and the username texts,i want only
one text,a static text(twitter),that will be rendered indepedent of the
user.The same behavior I want to the picture,it will be the twitter logo
that will,obviously,rendered indepedent of the user.But there is another
solution that I'm thinking to do:instead of the widget design,i want only
the updates of the user,the timeline,rendering on a div that is definied to
my page.
In this case,what is the easiest solution?If anyone can help me,giving some
tip of how to do this...anyway,thanks in advance for the attention!


Re: [twitter-dev] Re: trivial doubt

2010-06-23 Thread André Luís Moura Lima
Hello everybody,
i added the html tags on my code and added the script tag and the twitter
code inside of it inside the body tag and now it's working fine...thanks a
lot ;D
anyway,is possible to change the join conversation text?


2010/6/22 Matt Harris thematthar...@twitter.com

 Hi André,

 Could you check you don't have javascript disabled? I know it sounds funny
 but I want to make sure it didn't get disabled. Otherwise, try copying and
 pasting the widget code fresh from our site and putting it between
 htmlbodyUnedited Widget Code/body/html

 See if that works for you
 Matt


 On Tue, Jun 22, 2010 at 4:39 PM, André Luís Moura Lima 
 azdr3mi...@gmail.com wrote:

 Matt,
 I added the comma,but the widget is not rendering at all.What's happening
 here??



 2010/6/22 themattharris thematthar...@twitter.com

 Hi André,

 Looking at your code it looks like you have added the line:
  id : 'twitterdiv'
 but forgotten to put the comma after it.
 If you add the comma the widget will work.

 Matt

 You don't need the div id = twitterdiv/div as the widget will
 automatically create that for you.

 On Jun 22, 6:25 am, André Lima azdr3mi...@gmail.com wrote:
  any suggestion of what I'm doing wrong here??
 
  On 21 jun, 22:00, André Luís Moura Lima azdr3mi...@gmail.com wrote:
 
 
 
   Hello everybody,
   I'm doing some tests with twitter widget profile...i do everything
 right on
   the site,copy the resulting code to my html,but the twitter widget is
 not
   shown,it isn't rendering.What can be wrong?for those who can help
 me,I will
   post the code here.I guess I'm doing some confusion with some html
 tags like
   body,head,html,etc...are they necessary to the code work
 right?anyway,i hope
   so,cause this code that I'm posting is,obviously,an example...the
 real html
   have head,body,html tags.anyway,here is the code:
   div id = twitterdiv/div
   script src=http://widgets.twimg.com/j/2/widget.js;/script
   script
   new TWTR.Widget({
 id : 'twitterdiv'
 version: 2,
 type: 'profile',
 rpp: 4,
 interval: 6000,
 width: 250,
 height: 300,
 theme: {
   shell: {
 background: '#33',
 color: '#ff'
   },
   tweets: {
 background: '#00',
 color: '#ff',
 links: '#4aed05'
   }
 },
 features: {
   scrollbar: true,
   loop: false,
   live: false,
   hashtags: true,
   timestamp: true,
   avatars: false,
   behavior: 'all'
 }}).render().setUser('andre').start();
 
   /script





 --


 Matt Harris
 Developer Advocate, Twitter
 http://twitter.com/themattharris



Re: [twitter-dev] Re: trivial doubt

2010-06-23 Thread André Luís Moura Lima
is there anyway to do it?

2010/6/23 André Luís Moura Lima azdr3mi...@gmail.com

 Hello everybody,
 i added the html tags on my code and added the script tag and the twitter
 code inside of it inside the body tag and now it's working fine...thanks a
 lot ;D
 anyway,is possible to change the join conversation text?


 2010/6/22 Matt Harris thematthar...@twitter.com

 Hi André,

 Could you check you don't have javascript disabled? I know it sounds funny
 but I want to make sure it didn't get disabled. Otherwise, try copying and
 pasting the widget code fresh from our site and putting it between
 htmlbodyUnedited Widget Code/body/html

 See if that works for you
 Matt


 On Tue, Jun 22, 2010 at 4:39 PM, André Luís Moura Lima 
 azdr3mi...@gmail.com wrote:

 Matt,
 I added the comma,but the widget is not rendering at all.What's happening
 here??



 2010/6/22 themattharris thematthar...@twitter.com

 Hi André,

 Looking at your code it looks like you have added the line:
  id : 'twitterdiv'
 but forgotten to put the comma after it.
 If you add the comma the widget will work.

 Matt

 You don't need the div id = twitterdiv/div as the widget will
 automatically create that for you.

 On Jun 22, 6:25 am, André Lima azdr3mi...@gmail.com wrote:
  any suggestion of what I'm doing wrong here??
 
  On 21 jun, 22:00, André Luís Moura Lima azdr3mi...@gmail.com wrote:
 
 
 
   Hello everybody,
   I'm doing some tests with twitter widget profile...i do everything
 right on
   the site,copy the resulting code to my html,but the twitter widget
 is not
   shown,it isn't rendering.What can be wrong?for those who can help
 me,I will
   post the code here.I guess I'm doing some confusion with some html
 tags like
   body,head,html,etc...are they necessary to the code work
 right?anyway,i hope
   so,cause this code that I'm posting is,obviously,an example...the
 real html
   have head,body,html tags.anyway,here is the code:
   div id = twitterdiv/div
   script src=http://widgets.twimg.com/j/2/widget.js;/script
   script
   new TWTR.Widget({
 id : 'twitterdiv'
 version: 2,
 type: 'profile',
 rpp: 4,
 interval: 6000,
 width: 250,
 height: 300,
 theme: {
   shell: {
 background: '#33',
 color: '#ff'
   },
   tweets: {
 background: '#00',
 color: '#ff',
 links: '#4aed05'
   }
 },
 features: {
   scrollbar: true,
   loop: false,
   live: false,
   hashtags: true,
   timestamp: true,
   avatars: false,
   behavior: 'all'
 }}).render().setUser('andre').start();
 
   /script





 --


 Matt Harris
 Developer Advocate, Twitter
 http://twitter.com/themattharris





Re: [twitter-dev] Re: trivial doubt

2010-06-23 Thread André Luís Moura Lima
i have to put the twitter code inside of this div for keep the design of the
page...

2010/6/23 André Luís Moura Lima azdr3mi...@gmail.com

 there is any way to put my twitter code inside a div?I have the following
 div and I want to put the twitter code inside this div...is this a possible
 thing to do??i already tried it but the widget isn't rendering...I have to
 do it this way...so here's the code:
 div class=twitter
  ul
 li@virt Lançamento!! 24/05/2010!! Aguardem... br / spanAbout 6 hours
 ago/span/li
 /ul

 /div


 2010/6/23 André Luís Moura Lima azdr3mi...@gmail.com

 is there anyway to do it?

 2010/6/23 André Luís Moura Lima azdr3mi...@gmail.com

 Hello everybody,
 i added the html tags on my code and added the script tag and the twitter
 code inside of it inside the body tag and now it's working fine...thanks a
 lot ;D
 anyway,is possible to change the join conversation text?


 2010/6/22 Matt Harris thematthar...@twitter.com

 Hi André,

 Could you check you don't have javascript disabled? I know it sounds
 funny but I want to make sure it didn't get disabled. Otherwise, try 
 copying
 and pasting the widget code fresh from our site and putting it between
 htmlbodyUnedited Widget Code/body/html

 See if that works for you
 Matt


 On Tue, Jun 22, 2010 at 4:39 PM, André Luís Moura Lima 
 azdr3mi...@gmail.com wrote:

 Matt,
 I added the comma,but the widget is not rendering at all.What's
 happening here??



 2010/6/22 themattharris thematthar...@twitter.com

 Hi André,

 Looking at your code it looks like you have added the line:
  id : 'twitterdiv'
 but forgotten to put the comma after it.
 If you add the comma the widget will work.

 Matt

 You don't need the div id = twitterdiv/div as the widget will
 automatically create that for you.

 On Jun 22, 6:25 am, André Lima azdr3mi...@gmail.com wrote:
  any suggestion of what I'm doing wrong here??
 
  On 21 jun, 22:00, André Luís Moura Lima azdr3mi...@gmail.com
 wrote:
 
 
 
   Hello everybody,
   I'm doing some tests with twitter widget profile...i do everything
 right on
   the site,copy the resulting code to my html,but the twitter widget
 is not
   shown,it isn't rendering.What can be wrong?for those who can help
 me,I will
   post the code here.I guess I'm doing some confusion with some html
 tags like
   body,head,html,etc...are they necessary to the code work
 right?anyway,i hope
   so,cause this code that I'm posting is,obviously,an example...the
 real html
   have head,body,html tags.anyway,here is the code:
   div id = twitterdiv/div
   script src=http://widgets.twimg.com/j/2/widget.js;/script
   script
   new TWTR.Widget({
 id : 'twitterdiv'
 version: 2,
 type: 'profile',
 rpp: 4,
 interval: 6000,
 width: 250,
 height: 300,
 theme: {
   shell: {
 background: '#33',
 color: '#ff'
   },
   tweets: {
 background: '#00',
 color: '#ff',
 links: '#4aed05'
   }
 },
 features: {
   scrollbar: true,
   loop: false,
   live: false,
   hashtags: true,
   timestamp: true,
   avatars: false,
   behavior: 'all'
 }}).render().setUser('andre').start();
 
   /script





 --


 Matt Harris
 Developer Advocate, Twitter
 http://twitter.com/themattharris







Re: [twitter-dev] Re: trivial doubt

2010-06-22 Thread André Luís Moura Lima
Matt,
I added the comma,but the widget is not rendering at all.What's happening
here??



2010/6/22 themattharris thematthar...@twitter.com

 Hi André,

 Looking at your code it looks like you have added the line:
  id : 'twitterdiv'
 but forgotten to put the comma after it.
 If you add the comma the widget will work.

 Matt

 You don't need the div id = twitterdiv/div as the widget will
 automatically create that for you.

 On Jun 22, 6:25 am, André Lima azdr3mi...@gmail.com wrote:
  any suggestion of what I'm doing wrong here??
 
  On 21 jun, 22:00, André Luís Moura Lima azdr3mi...@gmail.com wrote:
 
 
 
   Hello everybody,
   I'm doing some tests with twitter widget profile...i do everything
 right on
   the site,copy the resulting code to my html,but the twitter widget is
 not
   shown,it isn't rendering.What can be wrong?for those who can help me,I
 will
   post the code here.I guess I'm doing some confusion with some html tags
 like
   body,head,html,etc...are they necessary to the code work right?anyway,i
 hope
   so,cause this code that I'm posting is,obviously,an example...the real
 html
   have head,body,html tags.anyway,here is the code:
   div id = twitterdiv/div
   script src=http://widgets.twimg.com/j/2/widget.js;/script
   script
   new TWTR.Widget({
 id : 'twitterdiv'
 version: 2,
 type: 'profile',
 rpp: 4,
 interval: 6000,
 width: 250,
 height: 300,
 theme: {
   shell: {
 background: '#33',
 color: '#ff'
   },
   tweets: {
 background: '#00',
 color: '#ff',
 links: '#4aed05'
   }
 },
 features: {
   scrollbar: true,
   loop: false,
   live: false,
   hashtags: true,
   timestamp: true,
   avatars: false,
   behavior: 'all'
 }}).render().setUser('andre').start();
 
   /script



[twitter-dev] trivial doubt

2010-06-21 Thread André Luís Moura Lima
Hello everybody,
I'm doing some tests with twitter widget profile...i do everything right on
the site,copy the resulting code to my html,but the twitter widget is not
shown,it isn't rendering.What can be wrong?for those who can help me,I will
post the code here.I guess I'm doing some confusion with some html tags like
body,head,html,etc...are they necessary to the code work right?anyway,i hope
so,cause this code that I'm posting is,obviously,an example...the real html
have head,body,html tags.anyway,here is the code:
div id = twitterdiv/div
script src=http://widgets.twimg.com/j/2/widget.js;/script
script
new TWTR.Widget({
  id : 'twitterdiv'
  version: 2,
  type: 'profile',
  rpp: 4,
  interval: 6000,
  width: 250,
  height: 300,
  theme: {
shell: {
  background: '#33',
  color: '#ff'
},
tweets: {
  background: '#00',
  color: '#ff',
  links: '#4aed05'
}
  },
  features: {
scrollbar: true,
loop: false,
live: false,
hashtags: true,
timestamp: true,
avatars: false,
behavior: 'all'
  }
}).render().setUser('andre').start();
/script