Re: [jQuery] Is there a CSS doctor in the house?

2007-03-12 Thread Klaus Hartl
Dave Probert schrieb: And the special bit - a blank container (div or span) after the tools, with a style of 'clear:both' - this will stop the float. eg. div id='toolbar' span style='clear:both' /span /div I consider the extra span (obsolete) presentational markup, you can achieve

Re: [jQuery] Is there a CSS doctor in the house?

2007-03-12 Thread {js}sTyler
Abel, if you have css issues, try going to stylegala.com and visiting the forums there. That's where I learned to hack CSS. go ahead and put a link to the content, or paste some code it would save you time. -- View this message in context:

Re: [jQuery] Is there a CSS doctor in the house?

2007-03-11 Thread Dave Probert
Hi, I guess what you're actually after is the use of the 'float:[left|right|none]' css thingy. Very rought guide (and I mean Very!) Basically have a block container element (div not span) and your list of 'buttons' each using a 'toolbutton' (or whatever css class). That class should have

[jQuery] Is there a CSS doctor in the house?

2007-03-09 Thread Abel Tamayo
I'm sorry to post a non jQuery related question in the board, but I spent the whole day of yesterday on this and I need it to work for my jQuery plugin (So, somehow, it IS jQuery related). The thing is I have a list of buttons and I can't make the color selectors (foreground and hilite color)

Re: [jQuery] Is there a CSS doctor in the house?

2007-03-09 Thread Kenneth
If you're talking about the dimming of the buttons on the GUI, it could be done like so: $(function(){ $('.gui').hover(function(){ $(this).animate({opacity: .3}, 1); },function(){ $(this).animate({opacity: 1}, 1); });

Re: [jQuery] Is there a CSS doctor in the house?

2007-03-09 Thread Joel Birch
On 09/03/2007, at 8:32 PM, Abel Tamayo wrote: Nah, that's easy. The problem is I can't make the lists of lists look like an array of buttons, and some of them place themselves in places I don't want them to. It´s a matter pf position and display, I know that for sure, but still I can't

Re: [jQuery] Is there a CSS doctor in the house?

2007-03-09 Thread Olaf Bosch
Abel Tamayo schrieb: The thing is I have a list of buttons and I can't make the color selectors (foreground and hilite color) look like the ones make a online-demo, help for help ;) is the fastes way -- Viele Grüße, Olaf --- [EMAIL PROTECTED] http://olaf-bosch.de

Re: [jQuery] Is there a CSS doctor in the house?

2007-03-09 Thread Dan Eastwell
Have I missed the rest of this thread? Do you have a) Sample HTML/CSS to look at and b) What you'd like it to look like on each of the states. I'll be happy to look at the problem, being a CSS person. On 3/9/07, Abel Tamayo [EMAIL PROTECTED] wrote: Nah, that's easy. The problem is I can't

Re: [jQuery] Is there a CSS doctor in the house?

2007-03-09 Thread Abel Tamayo
The problem is that I don't have server to uploadt it to, and this forum doesn't let you attach files past a determined weight (wich is too small and I always have my attachments banned). That's why I said I would send a sample to those caring souls that could pay me some attention. Now I'm

Re: [jQuery] Is there a CSS doctor in the house?

2007-03-09 Thread Karl Swedberg
Abel, send me the files and I'll post them at http:// test.learningjquery.com so that people here can have a go at them. --Karl _ Karl Swedberg www.englishrules.com www.learningjquery.com On Mar 9, 2007, at 5:02 AM, Abel Tamayo wrote: The problem is that I don't have server