I just changed the plugin and it worked great!

Thank You Very Much!
Miguel

On Sep 11, 1:27 pm, TheBoyaci <[EMAIL PROTECTED]> wrote:
> Hi,
> you use FileStyle plugin so that this plugin change your file input
>
> <label for="Path">File</label>
>
> ++added by FileStyle plugin  <input class="file" style="display:
> inline; width: 320px;" alt=""/>
>
> and wrapped your input file by FileStyle plugin
>
> <div style="background: transparent url(FileUpload_Button.jpg) no-
> repeat scroll right center; overflow: hidden; width: 20px; height:
> 15px; -moz-background-clip: -moz-initial; -moz-background-origin: -moz-
> initial; -moz-background-inline-policy: -moz-initial; display: inline;
> position: absolute;">
>          <input type="file" value="" name="Path" id="Path"
> style="position: relative; height: 15px; width: 320px; display:
> inline; cursor: pointer; opacity: 0; margin-left: -142px;" alt=""/>
>           </div>
>
> So you will try this code
>
> $("input[type=file]").filestyle({
>     image: "FileUpload_Button.jpg",
>     imageheight: 15,
>     imagewidth: 20,
>     width: 320
>   });
>
> ++add  $(".file").attr('title','Select a file');
>
> because this input which has file class created by FileStyle plugin or
> you can change  this plugin code at line 43-49
>
> 43 var filename = $('<input class="file">')
> 44                            .addClass($(self).attr("class"))
> 45                            .css({
> 46                                "display": "inline",
> 47                                "width": settings.width + "px"
> 48                            })
> 49               +++add       .attr('title',$(self).attr("title"));
>
> On 11 Eylül, 14:21, shapper <[EMAIL PROTECTED]> wrote:
>
> > Hi,
>
> > I corrected and styles my ToolTip ...
>
> > However, if you note that is still a problem with the Input of type
> > file ... it only shows the tooltip over the styled browse button and
> > not over the input.
>
> > Do you know what I need to do to solve this?
>
> > Thanks,
> > Miguel
>
> > On Sep 11, 9:03 am, TheBoyaci <[EMAIL PROTECTED]> wrote:
>
> > > Hi Miguel,
>
> > > try set the element style position:absolute which id is "tooltip".
>
> > > #tooltip{
> > >      position:absolute;
>
> > > }
>
> > > On 11 Eylül, 04:18, shapper <[EMAIL PROTECTED]> wrote:
>
> > > > Hello,
>
> > > > Please check my 
> > > > form:http://www.27lamps.com/Beta/FileStyleValidate/FileStyleValidate.html
>
> > > > Why does the ToolTip over the Title input shows on the bottom?
>
> > > > And why the ToolTip for the input of type file does not even show? How
> > > > can I solve this-
>
> > > > Thanks,
> > > > Miguel

Reply via email to