Big space in front of hyperlinks.

Everywhere I have a hyperlink in the html files, javahelp puts a big space in front of it. This leaves big gaps in a sentence that has a word that is a hyperlink.
Any idea what causes this? Or any way to prevent it?

It looks a lot different on different platforms.
On SGI it looks really bad.
http://www.kennyboy.org/sgi.jpg
On Linux better.
http://www.kennyboy.org/linux.jpg
On windows it looks the best.
http://www.kennyboy.org/windows.jpg
Why does it look this different on the three different machines?

Similar Messages

  • Is is possible to remove space in front of bulletButton?

    Hi all,
    Is it possible to remove the space in front of a bulletButton (RichTextEditor)?
    By that I mean the space in front of
    <- this.
    So that the bullet is totally aligned left.
    Thnx,

    Hi Malla,
    To my knowledge, this is not possible. You can hide/show the entire toolbar. But not a specific item for security reasons.
    Check out the following link
    http://www.acrobatusers.com/forums/aucbb/viewtopic.php?id=7845
    Regards,
    Mathan

  • What's that big space display that's suddenly appeared

    Ive just added an external hardrive to my iMac. All fine. But when I click on time machine - instead of opening up from the dock (its ok if I open from system preferences) the screen turns into this huge space picture with my file windows disappearing to infinity (very pretty) and a big bar across the bottom that says Cancel / Today Now / Restore. What's that about and what does it have to do with backing up my files? I cant see anything obviously backing up anything ... just this big picture.

    That "big space" means you've entered Time Machine in case you want to restore something. Each of those windows (as they go back) are each of your incremental backups. If you look at the bottom of the screen, the first one will show "now". When you click on a window farther back, "now" will change to the date & time of that backup.
    So you guessed it... The icon in the Preferences Pane is for setting TM's preferences. The Dock icon is the Time Machine app itself. If you want more options when clicking on the TM icon (in the Dock), right-click or CTRL-click on it. This'll let you "backup now", open preferences, etc.
    HTH

  • Table with break between pages but without big spaces

    Hello,
    I want to make a break in a cell of a table, that the text continues on the other page...
    The Problem is, that pages leaves big space between tables, that break form one page to an other!
    In Word there I have the option to admit a break in a cell!....
    Is there a solution for Pages?
    Thanks,
    Fabian

    fmuell,
    Common question, answered here many times in the negative. I'll offer you a workaround.
    Highlight the row on the second page, containing the text that you wish to split, and from the Menu Bar select Format > Table > Add Row Below. Now highlight the lower portion of the text in your oversize cell and select Edit > Cut. If you cut the proper amount of content, the remainder will pop back to the previous page and you can Paste the text you cut into the new empty row. If the empty row also pops back to the previous page, no worry -- after you paste the cut text into it, it will move to the top of the next page.
    Not pretty, but it may work for you.
    Jerry

  • DateFormat function inserts space in front !

    Hi to all,
    I recently started a brand new project in CF9.0.1 (hotfix 1 in place).
    In one of my main components I have a function as per the following :
        <cffunction name="DateFormatBE"
                         access="public"
                         returntype="string"
                         description="Formats a given string to Belgian date format, returns a blanco when no date is given">
            <cfargument name="myDate"
                               type="string"
                              required="false"
                              default=""
                              hint="the string to date format">
           <cfscript>
                if (Len(Trim(ARGUMENTS.myDate))) {
                    if (! IsDate(ARGUMENTS.myDate)) {
                        ARGUMENTS.myDate = ParseDateBE(ARGUMENTS.myDate);
                        if (! Len(Trim(ARGUMENTS.myDate)))
                            return "";
                    return Trim(LSDateFormat(ARGUMENTS.myDate,"DD/MM/YYYY"));
                } else
                    return "";
            </cfscript>
        </cffunction>
        <cffunction name="ParseDateBE"
                        returntype="any"
                        access="public"
                        output="false"
                        hint="Parses a given string to a date object (dd/mm/yyyy).">
            <cfargument name="myDate"
                                required="No"
                                type="string"
                                default=""
                                hint="the string to parse of format (dd/mm/yyyy)">
            <cfscript>
                if (ListLen(ARGUMENTS.myDate,"/") == 3) // expects two slashes
                    return CreateDate(ListGetAt(ARGUMENTS.myDate,3,"/"), ListGetAt(ARGUMENTS.myDate,2,"/"),ListGetAt(ARGUMENTS.myDate,1,"/"));
                else
                    return "";
            </cfscript>
        </cffunction>
    As of version 9.0.1 I always receive an extra space in front if I output a date as following :
         <cfoutput>
              <input type="Text"
                        name="SomeName"
                        value="#DateFormatBE(Now())#" >
         </cfoutput>
    However, this does seem to work as expected :
         <cfdump var="#DateFormatBE(Now())#">
    Is this a known bug or am I missing something?
    Thanks for reading!
    Bert.

    I do have put output="false" in my component tag definition, but that seems to do just nothing...
    When one instantiates a CFC, any code outside any <cffunction> within the CFC file is executed.  That could generate spurious whitespace if you don't have OUTPUT="FALSE" on the CFCOMPONENT tag.
    Adam

  • Spaces in front of form entry values

    I have a form that submits to itself. After submiting the
    form, and if there is a user error, the form entry values are
    brought back with a space in front of the value. For example the
    first three digits of a ssn number bring back a space + 428.
    Is there a way to keep the values from coming back with a
    space in front?

    I am not using many udf. Sample of form entry code below:
    <input name="ssn1" type="text" id="ssn1" <cfif
    isdefined("form.ssn1")> value = "<cfoutput>
    #form.ssn1#</cfoutput>" <cfelse> value =
    "<cfoutput>***</cfoutput>"</cfif> onKeyUp
    ="validotherssn(this);" size="3" maxlength="3" align="left"
    onKeypress="if (event.keyCode < 48 || event.keyCode > 57 )
    event.returnValue = false;" >
    <input name="ssn2" type="text" id="ssn2" <cfif
    isdefined("form.ssn2")>value = "<cfoutput>
    #form.ssn2#</cfoutput>"<cfelse> value =
    "<cfoutput>**</cfoutput>" </cfif>
    size="2" maxlength="2" onkeyup="validotherssn(this);"
    onKeypress="if (event.keyCode < 48 || event.keyCode > 57 )
    event.returnValue = false;" >
    <input name="ssn3" type="text" id="ssn3" <cfif
    isdefined("form.ssn3")>value = "<cfoutput>
    #form.ssn3#</cfoutput>" <cfelse> value =
    "<cfoutput>****</cfoutput>"</cfif>
    onKeyUp="validotherssn(this);" size="4" maxlength="4"
    onKeypress="if (event.keyCode < 48 || event.keyCode > 57 )
    event.returnValue = false;" > </td>

  • Adding space in front of unique number?

    I downloaded photos from camera and renamed the files with the 'Rename files to:' function.
    How can I add a space between the file name and the unique number which is added to the name? If I write name "On the lake", the filenames will be "On the lake001.jpg". Even when I write "On the lake " (adding an extra space), the filename will be "On the lake001.jpg", as well. Annoying!
    Is there a way to add the space to make the name like "On the lake 001.jpg"?

    Hi Mikail,
    I am sorry but in my case, there is always an underscore that separates the filename and the unique sequence number. I am using PSE 7.
    Which version are you using?
    -Tarun

  • I can't get the bottom of my page to come up higher towards my content, big space on my page

    Here's a link.  I've took out the margins, padding, shortened the height of the page to 200px.  I've brought the footer up on my master page until there's no space barely between my header.  I've checked for hidden text boxes.  On my other page the content is long so it pushes the footer down and appears ok.... Can't figure it out!  Below is a link to the problem page:
    Home
    Thanks for any suggestions

    Hi
    I believe you have already fixed the issue, but if still the same problem is with any specific page, please let me know.
    This is generally caused due to footer issue.
    Thanks,
    Sanjit

  • Sizing subvi to designated space on front panel

    Hi All,
    Rookie LabVIEW programmer here, just starting to get into it.
    I'm working on an app that has several states, setup/acquire/display
    etc. that I control with a cluster of buttons (ala a training class
    example). So I've placed these buttons on one side of my app and have laid
    out a display area where I want the subvi's to apear (one for each state).
    So my question is, How can I position the subvi to appear in the
    location I have designated on my main front panel?
    Thanks in advance for the help.
    Cheers,
    Gregory Cole
    [email protected]
    "Today's mighty oak is just yesterday's nut that held its ground."

    hi... sorry about that
    There isn't any password protection but just locked (under vi property)
    Here it is.
    Ian F
    Since LabVIEW 5.1... 7.1.1... 2009, 2010
    依恩与LabVIEW
    LVVILIB.blogspot.com
    Attachments:
    poSubvianfk.llb ‏56 KB

  • Why does iphone 6 put a big gap in front of words

    im getting really frustrated, if I type a sentence with ️hehe or ️babe it puts a big gap <-- like the
    gaps you can see there, I don't know how to stop it, I've tried adding ️hehe to the keyboard shortcuts, that didnt
    work and I don't want to turn off autocorrect as it does help a lot normally
    thanks in advance

    Hello, BriceQc.  
    Thank you for visiting Apple Support Communities.  
    I understand that your iPhone 6 will not default to your Wi-Fi network unless in Airplane Mode.  I would need a little more information regarding your router type, password protocol used and iOS software installed to provided a better answer.  However, try updating your router firmware and go through the troubleshooting steps in the article below.  
    If your iPhone, iPad, or iPod touch won’t connect to a Wi-Fi network
    Recommended settings for Wi-Fi routers and access points
    -Jason H.  

  • Audigy 2 ZS a big problem with front rear (HELP ME PLEA

    I have such problem as: I hear front right in my subwoofer with subwoofer`s sound/
    front right + subwoofer
    When I have checking the chanells I hear:
    front left in front left
    front centre in front centre
    front right in front right + subwoofer - ?
    rear right in rear right
    rear left in rear left
    HELP ME PLEASE

    You still have not told me how you performed the test to determine that you are getting two channels in front right, I am pretty sure you could not detect this with all 6 speakers on the go. There are 2 possibilities, ) you ran the Creative speaker utility or 2) you physically disconnected all the speaker wires except front right.
    In any case do both and tell me what you hear.
    What is most interesting to me is that the sub woofer channel is paired with front centre in the card.

  • Export adds black space to front of quicktime video

    I have an iMovie I wanted to include on an existing web page so I exported it, selecting Quicktime and Export for Web. But when I view the movie in Quicktime, the first 6 seconds are a black screen!
    Thinking I did not have the starting position right, I placed the start bar a few seconds into the clip and tried again. Again, 6 seconds of black, then the movie started where I indicated.
    What setting am I missing? I've gone thru various preferences but cannot find anything. Why would I get this black space???

    Hi Kobe,
    To achieve this,
    2009
    -----200901
    -----200902
    2010
    -----201001
    -----201002
    You can make use of column properties->Horizontal Alignment = Right and Vertical Alignment=Top, But you have multiple requests in your report. The approach is to differentiate different levels and apply conditional formatting. Try this approach,
    1. Click on the combined request so that you can see "Add Result column" option in the left pane
    2. Click on "Add Result Column", in the column formula type in your time dimension column (if the column is in first posiiton type saw_0)
    3.Again Click on "Add Result Column" , in the column formula enter : case when LENGTH(saw_0) > 5 then 2 else 1 end
    Here LENGTH(saw_0) > 5 will return only month records (i.e)200901,200902 etc
    4.Now click on column properties of the new column added in step2, goto conditional formatting->Add Condition ->Select the column added in step 3 ->
    Case when LENGTH(saw_0) > 5 then 2 else 1 end = 2 then format -> Horizontal Alignment = Right and Vertical Alignment=Top
    This will indent the month column to right. This will work when exported to pdf.
    Regards,
    Dpka

  • Spaces in File Path Hyperlink

    I have a crystal report that lists invoices. On each row is an image that contains a hyperlink that loads an image of the scanned invoice. The invoice fields related to that row are passed into the hyperlink. The hyperlink is as follows;
    PVault\Documents\Accounts Payable\Invoices\"&{Invoice.VendorNumber}&"\AP Invoice "&{Invoice.VendorNumber}&" - "&{Invoice.InvoiceNumber}&".tif"
    This hyperlink worked outside of the DNN portal. I have added this report to the portal and am running the report successfully. However when I click on the hyperlink in the DNN portal the hyperlink fails with cannot find file path.
    I would appreciate any help with this. Thanks.

    Hi,
    Please have a look at the Rules of Engagement before posting to these forums. The link is here:
    https://www.sdn.sap.com/irj/sdn/wiki?path=/display/home/rulesofEngagement
    Once you have read the above, please provide the necessary information.
    VS version?
    CR Version?
    Service pack level?
    Production or development issue?
    Sincerely,
    Amit

  • Big spaces in table

    Hi, i've created a form using http://www.emailmeform.com/ and i'm trying to paste the HTML code straight into my website. It all works fine and looks good, apart from the fact that when the form is in, it moves the ajacent table below it, leaving a massive space above my main text body, in both design view and published view. I know next to nothing about HTML, and have made a bit of a mess of the tables as a result, and believe thats probably why this is happening. Heres a picture:
    The tables are a complete mess, but its the only way i knew how to get pictures/text the way i wanted them.
    Heres the code before adding the form:
    http://pastebin.com/FiUnybHt
    And after:
    http://pastebin.com/1javCuvK
    I know its a mess, but if anyone can be bothered to decipher it, i'd be extremely grateful.

    You have to set the <td> cell in which your 'Welcome to The Computer Shack' table is inserted to vertical-align top.
    Open the page in Dreamweaver and click in the space above the table. Look along the bottom edge of the window and you will see the html tags - select the <td> tag to the left of the last <table> tag. Then go Windows>Properties to open up the properties panel. Select from the 'Vert' menu 'Top'.
    Your table should now align to the top of the cell in which it is inserted.

  • Hyperlink script with a space

    The form I created has a button. In the body of the email that comes from this button I included a link for locating the pdf on a server. For instance we'll say the complete link is:
    \\nw\pacific\title\building\RA-12-18530 Enclosure
    However the space between the number 18530 and Enclosure is creating problems in the hyperlink of the email. See Figure 1 below.
    //var RAO = RA-12-18530
    // This scirpt creates the hyperlink with the RA file name
    var rao = xfa.resolveNode("form1.Page1.RA").rawValue;
    var bdco = "\\\\nw\\pacific\\title\\building\\";
    var loca  = bdco + rao + ".pdf";
    var loca2 = bdco + rao + " Enclosure.pdf";
    The space in front of the letter E of Enclosure and the quote mark is causing the script to not make "Enclosure" part of the hyperlink. How do I write the script to attach the word " Enclosure" to the hyperlink? Thanks.
    Figure 1

    \xa0 will create a space in a link. Write the code as follows:
    var loca2 = bdco + rao + "\xa0Enclosure.pdf";
    http://forums.digitalpoint.com/showthread.php?t=2099418
    Results in the hyperlink of an email continueing to include " Enclosure.pdf"

Maybe you are looking for

  • ITunes iClould help - syncing and accounts

    We have at our house one PC (Windows Vista) and we (family of 5) have always just used one AppleID.  We have two iPhone 4's since June, three iPod Touchs (newest gen), an older nano and shuffle.  That's our current set-up.  We have had our own playli

  • G/L account requires an assignment to a CO object

    Hi All, In transaction VL02N when i am entering outbound delivery number and trying to post goods issue it is giving me error as specific G/L account requires an assignment to a CO object. Outbound delivery number i got from sales order through trans

  • Delete sales order with Purchase Order

    Dear SD Guru, We need to flag a material to be relavant for batch management but sales order already exists for this material. In this sales order, PO has been generated. I need to delete the sales order but I'm not allowed to because of the subseque

  • Problem in creating model

    Hi, While creating model i am getting this error in the last step i.e. after selecting the BAPI function. what might be the pro blem can any one help me plz. [Warning]:     Creating a connection with Metamodel language <en> failed.  Continuing with l

  • Surcharge at the Item level in variant configuration

    Hello, I have created a pricing condition for the surcharges at the item level and i can see the surchage being added up to the total value in the sales order. But when i create a invoice the condition value for the item is not being copied into the