Move Tooltip

Forums Classic DFFS Move Tooltip

Viewing 2 reply threads
  • Author
    Posts
    • #32407
      William Summers
      Participant

      Good day. I thought I found my answer here before but after an hour of searching I am resigned to I either figured it out in the past or the thread is gone.

      Essentially, I would like to move the tooltip icon to the left of the field label but I cannot figure that out. Is there an easy solution. The other option would be to somehow move it all the way to the right of the div so that they all align regardless of field label length.

      Thanks!

    • #32409
      William Summers
      Participant

      I want to answer one way of doing this. Adding the following

      .customTooltipIcon{float:right;}

      will move it to the right and align it. I am wondering if there is a way to move it to the left of the field label as well.

    • #32421
      Alexander Bautz
      Keymaster

      Hi,
      You can drop this in your custom js:

      jQuery(".customTooltip").each(function(i, tt){
          jQuery(tt).insertBefore(jQuery(tt).parents(".ms-formlabel:first").find(".ms-standardheader:first"));
      });

      Alexander

Viewing 2 reply threads
  • You must be logged in to reply to this topic.