Re: Mootools link nudging? - NOT WORKING!!

2009-02-09 Thread ghazal
@nwhite Thanks for the Nudger class. It works perfectly. I guess I'll make an extensive use of it. On Feb 9, 3:57 am, "Erik R. Peterson" wrote: > Cheers. > > On Feb 8, 2009, at 9:56 PM, Itay Moav wrote: > > > A word of caution, It will probably change how you see your site, as   > > it will zero

Re: Re[4]: Mootools link nudging? - NOT WORKING!!

2009-02-08 Thread Erik R. Peterson
Cheers. On Feb 8, 2009, at 9:56 PM, Itay Moav wrote: A word of caution, It will probably change how you see your site, as it will zero all the margins and paddings on elements you haven't explicitly gave them padding/ margin. A bit of work I would expect, but this is the correct way to do

Re: Re[4]: Mootools link nudging? - NOT WORKING!!

2009-02-08 Thread Itay Moav
A word of caution, It will probably change how you see your site, as it will zero all the margins and paddings on elements you haven't explicitly gave them padding/ margin. A bit of work I would expect, but this is the correct way to do things, and your next web page won't suffer, since you will in

Re: Re[4]: Mootools link nudging? - NOT WORKING!!

2009-02-08 Thread Erik R. Peterson
Thank you! On Feb 8, 2009, at 9:59 PM, Sanford Whiteman wrote: Ok.. Is this a javascript of some type? is this a simple cut-n- paste or do I need to build something? Google it... there are few different takes on it, but it's all CSS (by definition), not JS. --Sandy

Re[4]: Mootools link nudging? - NOT WORKING!!

2009-02-08 Thread Sanford Whiteman
> Ok.. Is this a javascript of some type? is this a simple cut-n-paste > or do I need to build something? Google it... there are few different takes on it, but it's all CSS (by definition), not JS. --Sandy

Re: Re[2]: Mootools link nudging? - NOT WORKING!!

2009-02-08 Thread Erik R. Peterson
Ok.. Is this a javascript of some type? is this a simple cut-n-paste or do I need to build something? Where are you nwhite? Have you seen this problem? Erik On Feb 8, 2009, at 9:13 PM, Sanford Whiteman wrote: reset.css? To scratch default/classless styles back to known values ac

Re[2]: Mootools link nudging? - NOT WORKING!!

2009-02-08 Thread Sanford Whiteman
> reset.css? To scratch default/classless styles back to known values across all browsers. --Sandy

Re: Mootools link nudging? - NOT WORKING!!

2009-02-08 Thread Erik R. Peterson
reset.css? Never hear of this before? Erik On Feb 8, 2009, at 8:53 PM, Itay Moav wrote: I haven't the time to dive in, but I would guess a reset.css file will solve this issue. On Sun, Feb 8, 2009 at 8:41 PM, Erik R. Peterson wrote: I discovered that when I load/refresh the page all

Re: Mootools link nudging? - NOT WORKING!!

2009-02-08 Thread Itay Moav
I haven't the time to dive in, but I would guess a reset.css file will solve this issue. On Sun, Feb 8, 2009 at 8:41 PM, Erik R. Peterson wrote: > I discovered that when I load/refresh the page all my links in the footer > are not justified all the way to the left. its not until i hover them t

Re: Mootools link nudging? - NOT WORKING!!

2009-02-08 Thread Erik R. Peterson
I discovered that when I load/refresh the page all my links in the footer are not justified all the way to the left. its not until i hover them they move to the left. Any suggestions? www.honestskin.com Erik On Feb 7, 2009, at 10:39 PM, nwhite wrote: I added a Nudger class to my post

Re: Mootools link nudging? - NOT WORKING!!

2009-02-07 Thread rpflo
$$('#footer3 a').set('tween',{duration: 300}) .addEvent('mouseenter',function(){ this.tween('padding-left','30px'); }).addEvent('mouseleave',function(){ this.tween('padding-left',''); }); Spend a day in the docs, you'll be amazed how quickly you'll whip this stuff up from scratch.

Re: Mootools link nudging? - NOT WORKING!!

2009-02-07 Thread nwhite
I added a Nudger class to my post. On Sat, Feb 7, 2009 at 10:31 PM, rpflo wrote: > > No sweat, we all start somewhere. I was a college bum who just copy/ > pasted any cool javascript stuff I found on the floor of the internet. > > Seriously, stick to one framework on a site--infact, I'd stick t

Re: Mootools link nudging? - NOT WORKING!!

2009-02-07 Thread rpflo
No sweat, we all start somewhere. I was a college bum who just copy/ pasted any cool javascript stuff I found on the floor of the internet. Seriously, stick to one framework on a site--infact, I'd stick to just one library generally for the time being until it starts to make sense. Very rarely

Re: Mootools link nudging? - NOT WORKING!!

2009-02-07 Thread Erik R. Peterson
I appreciate the input.. I'm learning. Many thanks. Erik On Feb 7, 2009, at 9:26 PM, rasmusfl0e wrote: the code you're trying to shoehorn into a mootools context is jquery code... just copy/pasting code randomly won't get you far. please take look at the blog post nwhite wrote - what you

Re: Mootools link nudging? - NOT WORKING!!

2009-02-07 Thread rasmusfl0e
the code you're trying to shoehorn into a mootools context is jquery code... just copy/pasting code randomly won't get you far. please take look at the blog post nwhite wrote - what you need is all there. On Feb 8, 3:09 am, "Erik R. Peterson" wrote: > Has anyone successfully installed the lin

Re: Mootools link nudging? - NOT WORKING!!

2009-02-07 Thread Erik R. Peterson
Wow, I wanted mootools but I ended up with jquery without my awareness. I still want to know why I can't get mootools to work? Erik On Feb 7, 2009, at 9:17 PM, rasmusfl0e wrote: looks like you copied the jquery sample code and not the mootools sample just below it. On Feb 8, 3:09 am, "Eri

Re: Mootools link nudging? - NOT WORKING!!

2009-02-07 Thread rasmusfl0e
looks like you copied the jquery sample code and not the mootools sample just below it. On Feb 8, 3:09 am, "Erik R. Peterson" wrote: > Has anyone successfully installed the link nudge? > > Erik > > On Feb 7, 2009, at 8:58 PM, Erik R. Peterson wrote: > > > > > I'm using mootools. > > > I removed:

Re: Mootools link nudging? - NOT WORKING!!

2009-02-07 Thread Erik R. Peterson
Has anyone successfully installed the link nudge? Erik On Feb 7, 2009, at 8:58 PM, Erik R. Peterson wrote: I'm using mootools. I removed: $(function() { I changed to the following: $$('#footer3 a').hover(function() { I can't get this work!!! Augh!! Erik On Feb 7, 2009, at 8:53

Re: Mootools link nudging? - NOT WORKING!!

2009-02-07 Thread Erik R. Peterson
I'm using mootools. I removed: $(function() { I changed to the following: $$('#footer3 a').hover(function() { I can't get this work!!! Augh!! Erik On Feb 7, 2009, at 8:53 PM, rpflo wrote: what is this for? $(function() { This: $('#footer3 a').hover(function() { Should be: $$('#

Re: Mootools link nudging? - NOT WORKING!!

2009-02-07 Thread rpflo
what is this for? $(function() { This: $('#footer3 a').hover(function() { Should be: $$('#footer3 a').hover(function() { Wait a sec, what the crap is .hover? ... And .animate? Is this JQuery?! Strange to use two library's on one site ... I'm sure there's a good reason in some cases, but since

Re: Mootools link nudging? - NOT WORKING!!

2009-02-07 Thread Erik R. Peterson
Thanks for the link, but for the life of me, I can't figure out why its not working for me: http://www.honestskin.com window.addEvent('domready',function() { $(function() { $('#footer3 a').hover(function() { $(this).stop().animate( { paddingLeft:"30px"