Apply LOGO on the head of URL

Hi,
I'm wondering that how to apply the LOGO on the head of the URL? Like the apple website ,it'll appear white apple with grey background on the head of URL...
will it very difficult to apply?
Thanks for help!

There's a 3rd party iWeb enhancer app, iWeb Valet 1.01.b, that claims it can add you favicon for you.
OT

Similar Messages

  • Add a logo to the header definition of an Interactive Report

    Hi Folks.
    Using Apex 3.1 and BI Publisher.
    I am enabling an Interactive Report region to output to PDF & Excel.
    Has anyone managed to add a logo to the Header/footer definition in the Print Attributes section?
    Is it possible? The region definition does not understand simple HTML syntax.
    If anyone would let me know if a) They've done it or b) It ain't possible that would be great.
    Many thanks.
    Dogfighter.

    Just reading through this thread. So perhaps a few comments might be helpful:
    - Interactive report regions do currently not support Report Layouts, you're limited to the built-in generic layout and won't be able to include images
    - You can add a button to your interactive report region page which could initiate the download of a report query, when doing this, you would get the result set of your report query not the interactive report region, so even if the queries are the same, you might have different filters applied to your interactive report
    - You can in fact include static images in your RTF report layouts using the BI Publisher Desktop Word Plug-In and MS Word, so you can have logos etc in your PDF documents. But report layouts currently only work with report queries and classic report regions
    - You can also include dynamic images in your PDF, e.g. based on images stored in a BLOB column, there's currently a character escaping issue causing some trouble with this, which will be fixed in 3.1.1, more on that once 3.1.1 is out (soon)
    - the print server overwrite is designed to point to a different print server than the one configured for your APEX instance, not to point to a specific report. So if your instance has BI Publisher configured, but for a specific report you want to do some special rendering using your own code, you can write e.g. a JSP, Servlet, etc that's doing the rendering, and then point yout report to that URL
    Hope this helps, we do plan to add support for report layout to interactive report regions in the next full release of Application Express
    Regards,
    Marc

  • How do I add a logo in the header of a TestStand 2012 HTML report?

    I've been trying to add a company logo to the header of a HTML report on TestStand 2012 without success. I've followed the help topic below however this seems to be for TestStand 3.1 and does not work on 2012. 
    http://digital.ni.com/public.nsf/allkb/3FD69C34EEF13E3786257448006A5F43
    I'm able to add pictures to the XML and ATML reports however I want to stick with HTML and everything I try does not seem to work!
    Any help would be hugely appreciated. 
    Many Thanks
    Sam Beutelspacher

    In TestStand 2012, the ReportHeader string no longer contains a <body> tag, so you can directly append the extra HTML to the parameter without needing to do a search and replace.  The following expression worked in my case:
    Parameters.ReportHeader = "\R\N<IMG src=\"C:\\NI.JPG\" ALT=\"NATIONAL INSTRUMENTS\">" + Parameters.ReportHeader
    Al B.
    Staff Software Engineer - TestStand
    CTA/CLD

  • Inserting a logo into the header and footer

    Hey Team
     I have a workbook with 5 worksheets. On sheet1 I have a button programed to open a new Word document; pull information from fields on 3 other sheets and creates a letter from that data. I have two company logos pasted into sheet5,
    Pic1 and Pic2.
    I want to copy Pic1 and paste it into the header  and copy Pic2 and paste it into the footer of the newly created word document and have them both centered and on all pages.
    As of now I can copy the Pics and paste them into the document body but have had no luck with the header or footer.  Any help is greatly appreciated.   
    Thanks!

    First, when you create a Word doc you should always create it based on a predefined template.  The template has all your corporate styles set etc...VBA code should only be used to insert text.  I almost never use it manipulate anything that can't
    be set in templates.  The templates should already have the logos inserted.
    Set rptDoc = Documents.Add("C:\templates\example.dotx")
    rptDoc.SaveAs fileName:="C:\....................docx", _
    FileFormat:=wdFormatDocumentDefault, AddToRecentFiles:=True
    If you add a picture I recommend adding at it a predefined bookmark in the template.  I do this when adding signatures.  The bookmarks can be in the header.
    Sub SetBkMarkPic(xDoc As Document, xBkName As String, xFile As String)
    ' Set bookmark in document. Add file to bookmark
    If xDoc.Bookmarks.Exists(xBkName) Then
    xDoc.Bookmarks(xBkName).Select
    xDoc.Bookmarks(xBkName).Range.Text = ""
    Selection.InlineShapes.AddPicture fileName:=xFile
    End If
    End Sub

  • Logo in template header

    Hi all, i think i'm going crazy !!! Sometime ago i've tried to have a logo in the header getting image name and location from XML tag, no problem i've got it working using url.... in the image properties.
    Now i need to have the same feature on another template, i think i've done the same operations but.. it doesn't works !!
    i know it's very simple but ...
    could anyone help me about this ?
    Thanks

    Sorry Tim , i've prepared a zip containing examples (rtf template and xml data file) for both cases, the first (fat002) is the one who works, the other (st_ana_cli) works only if i write the entire path in the url string. How can i send you this file?
    Thanks

  • How do i add images in the header and footer to a PDF using iText

    Hi ,
    I want to add images to the header and footer of every page while i am genrating a pdf i have created a separate class called EndPage which i am instanceiating its default constructor in another class 's button action method.
    The above code genrates a PDF for me however it genrates a file with file size zero bytes and does not open it following is my sample code
    //**********Any Help would be appreciated
    Thank You
    public class My_Class
    public String pdf_action()
    EndPage ep=new EndPage();
    return null;
    }//My_class Ends
    class EndPage extends PdfPageEventHelper
    * Demonstrates the use of PageEvents.
    * @param args no arguments needed
    public EndPage()
    try {
    com.lowagie.text.Document document = new Document(PageSize.A4, 50, 50, 70, 70);
    PdfWriter writer = PdfWriter.getInstance(document, new FileOutputStream("D://proposals/endpage.pdf"));
    writer.setPageEvent(new EndPage());
    document.open();
    String text = "Lots of text. ";
    for (int k = 0; k < 10; ++k)
    text += text;
    document.add(new Paragraph(text));
    document.close();
    catch (Exception de) {
    de.printStackTrace();
    public void onEndPage(PdfWriter writer, Document document) {
    try {
    Rectangle page = document.getPageSize();
    PdfPTable head = new PdfPTable(3);
    for (int k = 1; k <= 6; ++k)
    head.addCell("head " + k);
    head.setTotalWidth(page.width() - document.leftMargin() - document.rightMargin());
    head.writeSelectedRows(0, -1, document.leftMargin(), page.height() - document.topMargin() + head.getTotalHeight(),
    writer.getDirectContent());
    PdfPTable foot = new PdfPTable(3);
    for (int k = 1; k <= 6; ++k)
    foot.addCell("foot " + k);
    foot.setTotalWidth(page.width() - document.leftMargin() - document.rightMargin());
    foot.writeSelectedRows(0, -1, document.leftMargin(), document.bottomMargin(),
    writer.getDirectContent());
    catch (Exception e) {
    throw new ExceptionConverter(e);
    }

    Hi,
    Thanks for the quick response.
    The problem is that when I keep the logo as a watermark, the pdf is not adjusting itself to include the logo as header.
    But if I add a header text via Tools -> Headers and Footers, the pdf is adjusting itself so that the header text is at the beginning , not overlapping with the contents of pdf.
    But while using logo as watermark, some times overlapping of the pdf contents and logo is happening.
    Is there any way to add a logo in the Header and Footer via the option in Tools -> Headers and Footers
    Thanks,
    Vidhya

  • No graphics in the header

    Has anyone notices that you cannot put graphics and logos in the header section?

    You're only speaking to other users here. For Apple to hear you you need to leave feedback to the Pages team by using the link in the Pages menu.

  • Word - Pages and image in the header

    Morning.
    I've opened a Word file in Pages. The Word file contains in the header of the first page an image (corporate logo). In Pages 3.0.2 the image isn't adjusted on the right place but one line beneath.
    The problem is: I can not select the image to cut and replace ist.
    Do you know a way to grab the pic?
    TIA and kind regards, Friedrich

    Hi vatolin,
    Welcome to Pages discussions.
    Using Word for Mac 2004, I embedded a logo into the header. Then upon opening the Word document in Pages 3.0.2 I was able to move the logo out of the header onto the page and from the header completely delete the logo. The logo is a PNG file.
    Could it be that logo is embedded or coded into the document from the sender? We had that in some of our documents were the corp. logo stayed in the document.
    Let's hope others will have a better idea.
    Sincerely,
    RicD

  • Adding images to the header & footer in Pages for the iPad

    How do I add images i.e. logos into the header and footer in Pages for the iPad.

    I do not beleive Pages for iOS allows insertion of images into the header or footer, just the background of the page body. It can however be placed behind the header. (Tools icon (wrench - upper right of screen) > Document set up

  • Edit the header and other static content of a wiki?

    Hello.
    Does anyone know how to edit the header of a wiki?
    I'm no talking about the banner image, but the area above the banner (which contains the group name, and links for Wiki/Blog/Calendar as well as the search icon)?
    I've customized a number of wiki themes (via the original wireframe), but I've been asked to add a logo to the header area. I've also been asked to change "Blog" to another name.
    So, wondering — where are the files that I would edit for this?
    Any advice would be appreciated!
    Thanks,
    Kristin.

    You need to copy the XSL files from
    /usr/share/wikid/lib/apple_templates
    to
    /Library/Application Support /Apple/WikiServer/Themes/custom theme
    and then modify default.xsl in your theme folder.
    Message was edited by: onisama

  • How to enable the logo using master head par?

    I want to change the logo on the portal page in Master Head
    I have downloaded the par file of masterhead and changed required things like added .jar file, image required to show
    Then i created the new par file and uploaded the same.
    (with another name given for the uploaded par file)
    how can i make this par file enabled to show the new logo? in PCD?

    You can also use other tools(non-eclipse) to change it.
    Modifying Portal Initial logon pageThis procedure applies for EP 6.0 SP3 and higher.
    The logon user interface (UI) of SAP Enterprise Portal is delivered in a liportal archive (PAR file) named com.sap.portal.runtime.logon.par which
    contains all the logon UI's code and resources. In a deployed portal, the PAR file is located at
    <J2EE_Engine_Instance>\j2ee\cluster\server<X>\apps\sap.com\irj\servlet_jsp\i
    rj\root\WEBINF\deployment\pcd.
    During initial portal deployment, it is renamed to
    com.sap.portal.runtime.logon.par.bak.
    To customize the logon UI, we recommend the following procedure:
    Modify the PAR file containing the logon UIs
    1. Make a copy of com.sap.portal.runtime.logon.par.bak and rename it. In
    this example, it is renamed to my.new.logon.par.
    2. Move my.new.logon.par to a location outside of the
    <SAPJ2EEngine-deployment-dir>.
    3. Extract the files from my.new.logon.par preserving the directory
    structure.
    4. Modify files in the extracted PAR file.
    5. Put the modified files back into my.new.logon.par.
    6. Copy my.new.logon.par back to
    <J2EE_Engine_Instance>\j2ee\cluster\server<X>\apps\sap.com\irj\servlet_jsp\i
    rj\root\WEBINF\deployment\pcd.

  • Image (Co. Logo) in Template header appears but not in Topic when viewing a topic which is attached to the Template

    I have an image (Co. logo) placed in the header of a
    template. Topics are attached to the template. I also have a
    separate page that has hyperlinks to the the Topics in the several
    books I have in the project.
    When I generate (WebHelp) project and view the output, here
    is what I see:
    If I open any topic by directly going to a book and then
    clicking on the topic, then I see the Co. Logo/image it is supposed
    to be pulling from the Template. However, if I view the same Topic
    by accessing it from a navigation page in which all the Topics are
    hyperlinked then the top header does not show.
    I am bit preplexed with these two separate displays of the
    same topic. One showing the image in the header and the other not.
    Any assistance would be greatly appreciated. Thanks.

    Only you will know for sure what you are dealing with, but I do not see the same complete url code in the header of the page you say has a problem.  I only see the page filename linked (not http:///www...,  just home.html).  It may be a case of those pages not using the same template.

  • Chnaging the Logo in the Master head?

    Hi Friends,
    How to add the Custom logo in the Master head instead of SAP Logo.
    I copied the standard theme  Saved as customtheme.
    In the customtheme
    In the Portal Master head in the "URL to Logo "  property uploaded custom logo and saved.
    Added the Custom theme to the own desktop and set the custom theme as defult.
    But still it is showing the SAP Logo only.
    Guide me how to solve this problem.
    How to solve the problem using Masthead.par file.
    Thanks
    Srikanth.

    Hi,
    I did not see any other chance of error in this process.
    the problem might occure if
    1) the new desktop in not saved properly when you modify the existing theme. did you change the standard name and then saved it with your custom desktop name? if yes go back again and check the preview of it, save it again.
    2) mistake in adding the desktop to the user / role /group in main_rule (master rule collection). try creating a new user and assign this new desktop to that user.
    3) very less chance with browser cache clearance. i think you already did it.
    check the above 1 and 2 points once again.\
    PradeeP

  • How do I set the Http Header POST URL in SAAJ?

    Hi ,
    I am a newbie in the field of web services. I was trying to create a SOAP request with Http Header POST information having a POST url like
    the following:
    POST /OMASTI.xml HTTP/1.1
    Content-Type: multipart/related; boundary="eladeladeladeladeladeladeladeladelad"; type=text/xml; start=11814460
    Content-Length: 54596
    Host: unspecified
    SOAPAction: ""
    to that effect I did the following in the SAAJ client:
    MimeHeaders md = message.getMimeHeaders();
              md.setHeader("SOAPAction" ,"\"\"");
              md.setHeader("POST" ,"/OMASTI.xml");
    However what I got was :
    POST / HTTP/1.1
    Accept: text/xml, text/html, image/gif, image/jpeg, *; q=.2, */*; q=.2
    SOAPAction: ""
    POST: /OMASTI.xml
    Content-Type: multipart/related; type="text/xml"; boundary="----=_Part_2_32124414.1153146262750"
    Content-Length: 3352
    Cache-Control: no-cache
    Pragma: no-cache
    User-Agent: Java/1.5.0_07
    Host: www.google.com
    Connection: keep-alive
    I have two POSTs in the header. How do I fix it? Please Help ASAP.
    Regards,
    Zeus

    Hi,
    Please forgive my ignorance. I did the same as you said. and then checked the Http request being sent out using ethreal software... it was the same as I had told earlier. Is only POST supported by the connection object? And the does the URL that comes in the Mime header as POST refer to the URL to which the request was sent? what I mean is that if the mime header says
    POST /OMASTI.xml HTTP 1.1, does it mean that the URL that was passed to the connection object was "/OMASTI.xml" ? I had given the url as http://www.google.com to test the request being sent.. I only have a sample SOAP request which shows a HTTP header with the post url as I said before. I need to create a SOAP request with the same sort of Http header and the body needs to follow a certain OMA-STI protocol. My experience in the SOAP domain is almost nil. So please enlighten me.
    Thanks in advance,
    zeus

  • Report Server URL field no longer visible in Dashboard Designer after applying SP1 and the October 2011 CU

    Environment: 1 WFE on W2K8Ent x64 SP2 | 1 App Server on W2K8 Standard x64 SP2 | 1 Dedicated SQL Server 2008 R2  
    SharePoint 2010 Enterprise Edition
    I recently applied SP1 and the October 2011 CU (Server updates, not foundation) on both the WFE and the App server and now I'm experiencing an issue with PerformancePoint Dashboard Designer in that when I want to deploy a new SSRS report, I no longer have
    the ability to indicate the report server url under the report settings section because it's missing.  I also do not have the ability to preview the report nor can I modify any of the settings like Zoom or Format as they're greyed out.
    I've been researching for several days now and cannot find anything to remedy my issue. I have reviewed the upgrade logs on both the WFE and App server ... I ran the product config wizard after applying the SP and the update ... Sharepoint is configured
    to use Windows Integrated Mode for the reporting services configuration via Central Admin.
    I noticed that the web config for my app was updated and compared that against a backup of the old web config and I mainly see diffs in version references for reporting services, etc.  (Ex. version 10 in the old, 11 in the new/updated config file).
    Anyone else out there have this same issue?  Any suggestions would be greatly appreciated!
    Thanks,
    Chad

    Ultimately, I ended up installing SharePoint 2010 RTM on a separate system and then copied the folder with the PerformancePoint Dashboard Designer and put that on my PC at work.  If you open a PerformancePoint report inside SharePoint, it
    will default to the version of the update so be sure to open up the designer from wherever you store it on your PC.  You'll know if it's the right one anyways if the URL is missing. 
    Also, once you've opened the RTM version, this will be the one that opens from the SharePoint shortcut via the Windows Start->All Programs->SharePoint Folder. 
    Chad Barrett

Maybe you are looking for

  • URGENT:Income Tax Problem in Payroll

    Hi dear friends, when India payroll is run the Conveyance Allowance is not considering for Income TAX Exemption. I had assigned the TAX Code correctly with limit 800 per month. When i check the technical Wage Type /130 ,it contains only HRA amount wh

  • Partial Payments- Customer Clearing

    Hi I have a partial payment which was received from a customer . I received another partial payment againt the same invoice which completes the invoice . In both instances f-28 was used. The system still shows the invoice as open . Is there anyway i

  • CFFILE --   PDF?

    I have a cfform where a user can upload a file (via cffile) that is limited to certain types (.jpg, .doc, etc)... What I'd like to know is: after the file is uploaded to my server can it be converted to a .pdf ? After the conversion, the original fil

  • VERY VERY SLOW WIFI PRINTING

    I'm experiencing a very very slow printing of any complex document (1-2 mega spooling file).  

  • Transport DataSouorce Hierarchy (RSA6)

    Hello gurus, I am finding a difficulty to transport the datasource (RSA6)list from R3 system. I created a custom node (say XXX) under SAP (main Node) in Tcode rsa6. And I assigned all the custom datasources to that node. When I transport the datasour