BI Publisher - Stop hyperlink underlining in html

Hi,
My users are developing many templates using the word plugin and uploading the rtf files to publisher. We can create hyperlinks to other web pages and they work correctly BUT they always come out underlined in the html document we are generating.
How do I stop the underlining of the hyperlink?
Our standards people will not allow this underlining so we are stuck until we can find a solution.
Any help is greatly appreciated
Thanks
Andy

Hi Andy
Thats a tough one ... you can not specify the CSS command in your template
a:link, a:visited, a:active {text-decoration: none}
to turn off underlining in your html. We do not currently support that, you can turn off the underlining in MSWord but we ignore your choice on that front. Please log an SR and get support to log an ER for you.
As a workaround, you can get your users to tunr off the underlining in the browser client. Might not be an option but all I can think of.
Check your browser's configuration options. For example, in Mozilla Firefox see Tools > Options... > Fonts & Colors... for the Underline links option, in Opera see Tools > Preferences... > Web pages for the Underline normal links and Underline visited links options, and in MSIE 6 see Tools > Internet Options > Advanced > Browsing for the Underline links option.
Or, you could, and this is going to be nasty, parse the XHTML, find the CSS commands we insert and insert the necessary command to turn off underlining.
To be honest I would argue its a users preference to see the underlining, hover or hide it ...
Tim

Similar Messages

  • Hyperlink to a html report

    Hi ,
    I`m using LV2009.
    I have simulated a test report of a test board and generated a HTML report in the VI. The generated HTML report is saved in the file in some folder in the hard drive.
    All I wann is the hyperlink to the HTML report in the front panel.
    I saw few posts in the forum on the hyperlink but majority dealt with the excel sheets.
    Looking forward for your solutions.
    Regards,
    Manoj
    Solved!
    Go to Solution.

    Sorry, didn't see the 2009 in your post. Attached as LV 2009
    Now is the right time to use %^<%Y-%m-%dT%H:%M:%S%3uZ>T
    If you don't hate time zones, you're not a real programmer.
    "You are what you don't automate"
    Inplaceness is synonymous with insidiousness
    Attachments:
    About.vi ‏24 KB

  • Does the DPS publishes only for tablets? can I publish my indesign file to html only using DPS?

    Does the Digital Publishing Suite publishes only for tablets?  can I publish my indesign file to html only using DPS?

    DPS will not do what you want and neither with anything else without at
    least some work.
    HTML out of InDesign is for content only, not layout. There is a new
    product out there you can try, however:
    http://ajarproductions.com/pages/products/in5/
    Bob

  • Why are SOME hyperlink underlines BOLD?

    Hello,
    I've recently been experiencing a problem with my hyperlink underlines. My original file is in MS Word 2010. When I generate it to PDF (using Word's Acrobat Create PDF plug-in; I have Acrobat X Pro), I've noticed that it turns SOME of my hyperlink underlines BOLD. This is not my desired effect...I'm not sure why it is doing this. It looks perfectly fine in MS Word. But, it's pretty noticable throughout the PDF document; some hyperlinks have BOLD underlining and some do not. I DO NOT want this BOLD underlining. Does anyone know what I can do to fix this behavior?
    Thank you,
    TabbyW

    Hi try67!
    Yes, they are still bold; it looks slightly less noticable at 200%, but you can still tell. It even prints bold, which I didn't expect.

  • Newsstand Subscription - Publisher stop the publication

    Hi there,
    Do you know how Apple do or subscriber can do if the publisher stop the publication in Newsstand App and the subscription is still active?
    Recently I just got this problem for MacPeople which is published by Japanese publisher.
    I opened cases to Apple Support but either they said No Refund due to Apple policy or no response from support...
    I just got 2 of 12 issues from the subscription and this really makes me lose the trust in Apple Newsstand ... :-(
    Thanks anyway.
    With Regards

    For Newsstand subscriptions, you're bound to Apple's price tiers. In this case, you would create a subscription duration of 1-year that uses Tier 8 ($7.99). That would give users access to all folios published between the start date and end date, plus the most recently published folio. See http://help.adobe.com/en_US/ppcompdoc/Adobe_Publishing_Companion_Guide_for_iPad.pdf.
    You can set your own pricing only in a Newsstand app if you create an app with iTunes subscriptions and direct entitlement. That way, users could purchase a subscription either through iTunes (which uses Apple's pricing tiers) or they could buy access directly through your custom entitlement service. Your entitlement server would have whatever pricing and entitlement options you set up. See Entitlement | Adobe Developer Connection.

  • It used to be that when I created a pdf from a word or publisher document, hyperlinks worked fine. Now I cannot get them to work unless the text displayed for the link is the complete address and it all appears on one line. Why?

    it used to be that when I created a pdf from a word or publisher document, hyperlinks worked fine. Now I cannot get them to work unless the text displayed for the link is the complete address and it all appears on one line. Why?

    You can print to the Adobe PDF printer, but that only creates links that Acrobat or Reader recognize as such. That is the reason for needing the entire URL on one line. It is not actually an embedded link, but one created by Acrobat on the fly. With OFFICE 2013 you have two choices: 1. create the PDF with the print to Adobe PDF and then add the links in Acrobat so that they are complete or 2. I think the WORD save as PDF or XPS will create the PDF with links, but not sure. If so, that would be the quickest solution for you, but be aware of potential problems with the MS plugin.
    Of course, the third option is to upgrade to XI which can be done with AA 9. You will probably not be eligible for a for an upgrade to whatever the next version will be.

  • I tried to publish my project of 2 html pages, 3 photo pages and one widget page (map) to ipage hosting site. the two html pages published and that's all. Help.

    I tried to publish my project of 2 html pages, 3 photo pages and one widget page (map) to ipage hosting site. the two html pages published and that's all. Help.

    What's the URL of your site so we can examine it first hand?   Also try publishing the site to a folder on your hard drive and use the free FTP client  Cyberduck to upload your site.  It's been known to work when iWeb's ftp client has failed.
    OT

  • TIP: Remove underline from HTML CFGRIDCOLUMN HREF

    It took me almost all of yesterday to find the solution on
    how the remove the underline in HTML CFGRID / CFGRIDCOLUMN with an
    HREF
    Before the CFGRID definition add this new style for each
    column where you don't want the underline appearing
    <STYLE>
    <!--
    .x-grid-col-3 {text-decoration:none !important;}
    .x-grid-col-4 {text-decoration:none !important;}
    -->
    </STYLE>

    Thank you so much, Scott for putting me on the right lines here.
    I've been putting up with underlined href links in my cfgrids for years now and finally snapped today. After much hunting on the Web and coming across many, many people who are frustrated by this issue, I found your solution in the rather obvious place to check first.
    Based on your solution, I tried
    .x-grid-col div {text-decoration:none !important;}
    in a separate CSS stylesheet, and that worked just great for all columns in the grid.
    Hussah!

  • Hyperlinks in keynote HTML export.

    I've created a presentation with Keynote 3 and would like words and objects to link to external web sites.
    The links work when the presentation is viewed using Keynote. But when I export to HTML the links don't work.
    Am I doing something wrong? Or is this feature not available?

    Sigh, well that makes perfect since Apple, have "hyperlinks" built into keynotes that work like a webpage in preview, but when you export to HTML ( a logical choice) have it stop working...
    1 this should be an easy fix for apple, make each slide a seperatr HTML file and link between them. Currently it's already exporting each slide as a JPG.
    Yes I know Keynote is not meant to be a web design program... But if it can export to PDF, Quicktime, and even Powerpoint, HTML export (that works with hyperlinks) should be easily done...

  • How can I override the hyperlink underline in mac mail 4.5 OS 10.6.8

    I have designed a signature with hyperlinks to my email and my website. No matter what I do, I can't seem to remove the underline that accompanies the link ability. I have tried command U and by going through the menu options in the Font section. Does anyone know how to do this?
    mac mail 4.5 OS 10.6.8
    Thanks

    Kappy wrote:
    Then explain to the OP where he/she can purchase a retail copy of 10.6.8 Snow Leopard. I'm afraid I don't know where to get one.
    As you know, there is no 10.6.8 disk, but one can clone 10.6.8 into a late 2011 MBP (from an external HDD).  Niel mentions a 2012 model, you are the one who speaks of 2011 MBPs.  That is why I directed the comment to you.
    Ciao.

  • Publish SWF Output Options Export HTML

    I have a number of projects that display the Export HTML,
    Output Option of Publish SWF as checked and disabled. When I
    publish the project the htm file is not generated. All of these
    projects have SCORM Reporting selected and should be producing the
    swf file, htm file and scorm_support folder, but all I get is the
    swf file. Any thoughts?
    Thanks,
    Raymond Sugel Sr

    IThis is an aside but would be good for other newbies to
    know:
    what I learned and maybe you already know this is that when I
    published (having htm selected) it generated an output folder on
    its own!!! Lorn behold my htm, swf, and a file named js (?), I
    think was in that folder. I would have never gone looking for
    another folder but happened to see that was where I had placed by
    1st cp project days earlier.

  • Dynamic Hyperlink underline

    Hi all,
    I am writing an application, where the user can input text in a JText Area.
    I would like to add a feature where when as a hyperlink is being typed in, it would automatically be highlighted/underlined/made clickable.
    MS Word and hotmail editors have something similar, i.e. after the third w of the www is typed in, the string is being automatically
    underlined/highlighted/made clickable.
    Any help would be appreciated,
    Yiannis

    You might find this is easier to do with a JEditorPane than a JTextArea.

  • How to publish swf file as streaming html on LMS?

    Hi Folks
    When i try to publish a swf file it creates a html file and
    works fine. but when its created in the folder. It creates a skin
    file, 2 html files and standard file. When i publish it on LMS to
    create a streaming flash file nothing is seen. Is there any other
    way to publish. It is not a scrom compliant LMS. If that helps.
    Appreciate all the replies
    Thanks!

    Hi again
    I think you are probably still seeing the _skin.swf file
    because I don't believe that Captivate deletes the files prior to
    creating the new ones. So you should probably clear the folder
    before publishing again. Once you do that, you should see only
    three files.
    Cheers... Rick

  • Hyperlink to internal html-file

    Hello
    I want to set a link to a web-site wich is not on the www but on my hard-disk.
    Is this not possible ?
    Anybody with experiences ?
    When I open the html-file with Safari, and then copy the adress to the Keynote field, Keynote change the adress into an apple adresse.
    For a secure presentation I never would take files over internet.
    Of course I put these sites on my HD.
    Now, theres a small Java-Applet wich I need to show during the presentation, but I still couldn't figure out how to do. Stopping the Keynote-presentation and restart again, that's not a nice way.
    Thanks very much for help.

    Hello Kyn
    Thank you for help.
    It's Keynote 2.02.
    But I found the solution.
    In Systemprefs / Sharing I startet Web sharing.
    Then I renamed the html into index.html and placed it into the folder websites.
    Now the internal Webserver is serving the site.
    great.
    Thanks.
    Walter

  • Time-based publishing stopped working

    Hi,
    We currently have a problem with time-based publishing in KM. Since a few days ago, documents stopped becoming visible once they reach their "valid from" date. We have not been able to publish documents with TBP since then on that system.
    These errors keep appearing in the knowledgemanagement.#.log files, which seem related to this issue :
    #1.5#C000AC10005900130000012D00000B3400040F325EE040B8#1142608921379#com.sapportals.wcm.WcmException#irj#com.sapportals.wcm.WcmException.WcmException(62)#System#0#####ThreadPool.Worker1##0#0#Error##Plain###application property service not found com.sapportals.wcm.repository.service.timebasedpublish.wcm.TimebasedPublishException: application property service not found
         at com.sapportals.wcm.repository.service.timebasedpublish.wcm.TimebasedPublishServiceManager.getApplicationPropertyService(TimebasedPublishServiceManager.java:589)
         at com.sapportals.wcm.repository.service.timebasedpublish.wcm.TimebasedPublishServiceManager.setValidEventSent(TimebasedPublishServiceManager.java:540)
         at com.sapportals.wcm.repository.service.timebasedpublish.wcm.TimebasedPublishServiceManager.handleVisibleResources(TimebasedPublishServiceManager.java:327)
         at com.sapportals.wcm.repository.service.timebasedpublish.wcm.CheckValidFromSchedulerTask.run(CheckValidFromSchedulerTask.java:65)
         at com.sapportals.wcm.service.scheduler.SchedulerEntry.run(SchedulerEntry.java:128)
         at com.sapportals.wcm.service.scheduler.crt.PoolWorker.run(PoolWorker.java:107)
         at java.lang.Thread.run(Thread.java:479)
    The KMC version is SP2 with Patch level 29 hotfix 1, and is running on Windows Server 2003 with an Oracle database. We have opened an OSS message but while we are waiting I thought I would post this here in case anyone ever experienced this.
    Best regards,
    Olivier

    Hi,
    1.  Have you checked that tbl service continue assigned to your repository ?
    2. If you create a new repository and assign these service, does it work ?
    Enables users to define a time frame during which documents are published (visible).
    Note that the time-dependent publishing service requires the application property service.
    This service cannot be configured.
    Patricio.

Maybe you are looking for

  • I have iPhone and iPad with the same apple ID. How to share both my devices for Find My Friends ?

    Hi - I have an iPhone and an iPad using the same apple ID. I'm unable to share location from both the devices at the same time for "Find My Friends". I am only able to pick one device. Any help to share both the devices is greatly appreciated.

  • What is WLAN connectivity, how to use it for inter...

    hi all i have nokia n79, i have know about WLAN connectivity, i mean how to use it. i just check it in my office it shows WLAN network found, i opend it and select start web browsing, then it asked select WLAN network there it already shows hidden WL

  • Lotus Notes Portlet

    I have been having similar problems as forum messages # 520072 & 524480 (ref. below). my only difference is that in the apache error log I get the following: java.net.MalformedURLException: unknown protocol: https at java.lang.Throwable.fillInStackTr

  • Person or Group colum in the SharePoint list retrieves empty value for Mobile phone property

    Person or Group colum in the SharePoint list retrieves empty Mobile phone for some users although thoses users have Mobile Phone values in the User Proifles. This happens only for some users. For some users  it shows Mobile phone for some days and af

  • Combine messages workflow mail?

    I have used find messages, display messages, combine messages with the find area including the specific mailbox and the from and to fields filled out with the email addresses and subject line. Can't get it to work. I have clients who do not know what