Web Part Title Bar image

I can't believe no one has asked about this, but my search
came up empty.
How does one change the tiny (16x16) image on the Web Part
Title Bar? I see where to set the title, but not the image.

.oO(Michael Palmer Photo)
>
quote:
Originally posted by:
Newsgroup User
> .oO
>
> But even without knowing the proper name finding it
should have been
> quite easy. Just throw something like title bar icon or
address bar icon
> at any search engine you like ...
>
> Micha
>
>
> Actually I did and did get anything I understood and
certainly not in terms of
>what Dreamweaver can do for me automatically. I found out
from an MS page that
>it was in fact called a "Web Part Title Bar image", but
even knowing that
>didn't get me any further.
Strange term ... must be MS-speak. ;)
> Dreamweaver has a place for the title, but nowhere does
it mention the image
>that is next to it on web sites. On this forum the terms
"title image" came
>up with nothing.
Most people refer to it as the "address bar icon", which
returns a lot
of useful results on Google.
> I apologize if I asked a question that had been answered
before, but sometimes
>knowing how to phrase the question to find the answers
can be tricky.
No reason to apologize. I know that sometimes finding the
right words
can be difficult if you don't actually know what to search
for. In this
case it just seemed quite easy and straightforward to me ...
but anyway.
Micha

Similar Messages

  • Web Part Title Style

     How do we change style of Web part title

    Hi Jugnu,
    You can use the IE developer tool (by pressing F12 key) to get the HTML source of particular selection and get the class name / DIV ID or any other unique value to identify that portion. Use that unique identity to change the style of Web part title or any
    other design and you can write the code snippet in Content editor Web Part on that page.
    <style type="text/css">
    #WebPartTitleWPQ3 h2
    background:red !important;
    color:gray !important;
    </style>
    Vivek Jagga - MCTS SharePoint 2010
    My Blog

  • Localize web part titles using Display template in O365

    Hi,
    I have requirement to localize web part titles in my projects using Display template.
    Can anyone please tell me how can be this done .
    Thanks in advance for your great help.
    Regards,
    Avinash Kumar

    Hi Avinash,
    According to your description, my understanding is that you want to localize web part titles using Display template.
    Here is a detailed article for your reference:
    http://msdn.microsoft.com/en-us/library/office/gg491702(v=office.14).aspx
    Best Regards
    Zhengyu Guo
    TechNet Community Support

  • SharePoint Content Query Web Part Title Field

    SharePoint 2013
    I have a custom list on another site within SharePoint. How do I bring in all the columns? I see the title field on the Edit Web Part, but no matter how hard I try, I can't get multiple columns to show up.  Some of the Columns I am looking for from
    the Custom List:
    City
    Vendor
    Circuit ID
    Thanks,
    Chris

    Amit,
    Thanks for the links, but I am still missing something with the coding.  I am following the first link you gave me. 
    These are the instructions from the page
    In ContentQueryMain.xsl
    Locate “ <xsl:template name=”OuterTemplate.CallItemTemplate”> “
    Add:
    <xsl:template name="OuterTemplate.CallItemTemplate">
    <xsl:param name="CurPosition" />
    <xsl:param name="LastRow" />
    and add:
    <xsl:when test="@Style='MyTask'">
    <xsl:apply-templates select="." mode="itemstyle">
    <xsl:with-param name="CurPos" select="$CurPosition" />
    <xsl:with-param name="Last" select="$LastRow" />
    </xsl:apply-templates>
    </xsl:when>
    Search:
    <xsl:template name=”OuterTemplate.Body”>
    And scroll down to add this line:
    <xsl:call-template name="OuterTemplate.CallItemTemplate">
    <xsl:with-param name="CurPosition" select="$CurPosition" />
    <xsl:with-param name="LastRow" select="$LastRow"/>
    </xsl:call-template>
    What I don't know is where exactly to add the middle section in my xsl document.  Here is what I think I should have.  And the Circuit list below is another attempt at this too that has been unsuccessful.
    <xsl:template name="OuterTemplate.CallItemTemplate">
    <xsl:param name="CurPosition" />
    <xsl:param name="LastRow" />
    <xsl:value-of disable-output-escaping="yes" select="$BeginListItem" />
    <xsl:choose>
    <xsl:when test="@Style='NewsRollUpItem'">
    <xsl:apply-templates select="." mode="itemstyle">
    <xsl:with-param name="EditMode" select="$cbq_iseditmode" />
    </xsl:apply-templates>
    </xsl:when>
    <xsl:when test="@Style='NewsBigItem'">
    <xsl:apply-templates select="." mode="itemstyle">
    <xsl:with-param name="CurPos" select="$CurPosition" />
    </xsl:apply-templates>
    </xsl:when>
    <xsl:when test="@Style='NewsCategoryItem'">
    <xsl:apply-templates select="." mode="itemstyle">
    <xsl:with-param name="CurPos" select="$CurPosition" />
    </xsl:apply-templates>
    </xsl:when>
    <xsl:when test="@Style='MyTask'">
    <xsl:apply-templates select="." mode="itemstyle">
    <xsl:with-param name="CurPos" select="$CurPosition" />
    <xsl:with-param name="Last" select="$LastRow" />
    </xsl:apply-templates>
    </xsl:when>
    <xsl:otherwise>
    <xsl:apply-templates select="." mode="itemstyle">
    </xsl:apply-templates>
    <xsl:when test="@Style='CircuitList'">
    <xsl:apply-templates select="." mode="itemstyle">
    <xsl:with-param name="CurPos" select="$CurPosition" />
    <xsl:with-param name="Last" select="$LastRow" />
    <xsl:with-param name="StartNewGrp" select="$StartNewGroup" />
    </xsl:apply-templates>
    </xsl:when>
    </xsl:otherwise>
    </xsl:choose>
    <xsl:value-of disable-output-escaping="yes" select="$EndListItem" />
    </xsl:template>
    I think I am getting close and your help is much appreciated.

  • How to create Image as Custom Property Type used in Configurable Web Part?

    I wanted to create custom configurable web part property for Image.
    Example - the screenshot of Image property used in Image web part is shown below:
    My goal is to create as many images as possible in custom configurable web part.
    I tried to write the code:
    [WebBrowsable(true),
    WebDisplayName("Example Photo"),
    WebDescription("Example Photo of the user"),
    Category("Custom User Profile"),
    Personalizable(PersonalizationScope.Shared)]
    public Image ExampleUserPhoto { get; set; }
    However, the result does not display Image configurable web part property.
    I wonder why the data type Image does not cause the custom web part to have Image configurable web part property.
    Other data types such as Boolean, Enum, Integer, String and DateTime can be used.
    How can I create Image as Custom Property Type used in Configurable Web Part?

    I have examined that context node __00 has been enhanced,and  has a class name  z___00. But  when I created a new attirubute by right click " Attributes" with wizard under context node __00.There is still  a error message "view is not enhaced or copied with wizard".
    But  when  I created a method  "getvaliation "  in the class of context node zcl__00, the attribute  'valiation' automatically created(at the same time the method "getvaliation' automatically  created for the attribute 'valiation') and I need not to create attibute 'validation' by wizard .  It seemed as if the problem is resloved. But when I make test for it in web ui .There is a runtime erro message.
    Do I need to make some configurations in  the business object layer  for the checkbox? but  the checkbox is only used as a flag  to decide whether a backgoud job is needed to be executed.
    Edited by: samhuman on Jun 22, 2010 10:31 AM

  • How can I fix the image size in a "Picture Library Slideshow Web Part"

    When I upload images to be used in the Slideshow Web Part they become skewed because they are different sizes. Is there a way to fix this besides uploading images that are all the same size? 
    Thanks,
    Kathleen

    http://webcache.googleusercontent.com/search?q=cache:bfUcFkD_bxgJ:spcodes.blogspot.com/2012/08/display-slide-show-images-within-fixed.html+&cd=4&hl=en&ct=clnk&gl=in
     Display Slide Show Images within fixed size
    The Picture Library Slide Show Web Part show the images stored in a picture library with slide show effect.
    This slide show web part displays the images with it's original size. Due to this the web part changes its size according to the image size. If we want the slide show to run within the specific size on the page then we need to control the size of the images
    to the fixed length during runtime.
    To achieve this we need to add the CEWP above the picture Library Slide Show web part & insert the following script in that web part.
    <style type="text/css">
    .ms-WPBody TD {
        PADDING-BOTTOM: 0px; BORDER-RIGHT-WIDTH: 0px; MARGIN: 0px; PADDING- WIDTH: auto !important; PADDING-RIGHT: 0px; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; HEIGHT:
    auto !important; VERTICAL-ALIGN: middle; BORDER-LEFT-WIDTH: 0px; PADDING- 0px
    .ms-WPBody TD DIV {
        PADDING-BOTTOM: 0px; BORDER-RIGHT-WIDTH: 0px; MARGIN: 0px; PADDING- WIDTH: 100% !important; PADDING-RIGHT: 0px; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; HEIGHT:
    auto !important; VERTICAL-ALIGN: middle; BORDER-LEFT-WIDTH: 0px; PADDING- 0px
    .ms-WPBody TD IMG {
        PADDING-BOTTOM: 0px; BORDER-RIGHT-WIDTH: 0px; MARGIN: 0px; PADDING- WIDTH: 260px !important; PADDING-RIGHT: 0px; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; HEIGHT:
    190px !important; VERTICAL-ALIGN: middle; BORDER-LEFT-WIDTH: 0px; PADDING- 0px; align: center
    .s4-wpcell-plain {
        PADDING-BOTTOM: 0px; BORDER-RIGHT-WIDTH: 0px; MARGIN: 0px; PADDING- WIDTH: 100% !important; PADDING-RIGHT: 0px; BORDER-TOP-WIDTH: 0px; BORDER-BOTTOM-WIDTH: 0px; HEIGHT:
    auto !important; VERTICAL-ALIGN: middle; BORDER-LEFT-WIDTH: 0px; PADDING- 0px
    .ms-PartSpacingVertical {
        MARGIN-"color:#783f04;font-family:'Courier New',Courier,monospace;" />}
    .style1 {
        COLOR: #808080
    }</style>
    We can fix the height & width of the image in the .ms-WPBody TD IMG css.
    http://sharepoint.stackexchange.com/questions/66028/picture-slideshow-web-part-image-size-too-small
    How to display original images in SlideShow web part
    Step 1. Save below JavaScript code to file, for example in SlideshowObjectInitializer.txt and upload it to SiteAssets Library
    <script type="text/javascript">
    function SlideshowObjectInitializer() {
    ShowPic = (function(ShowPicOrig) {
    return function() {
    var ssObj = arguments[0]; //SlideShow object
    var curPicIdx=ssObj.index; //current picture index
    ShowPicOrig.apply(this, arguments); //call original ShowPic
    //apply some changes to display original picture in SlideShow control
    ssObj.image.src = ssObj.linkArray[curPicIdx]; //display original image instead of web image
    //change picture & container size to auto instead of fixed (by default web image size is used)
    ssObj.image.setAttribute('height','100%');
    ssObj.image.setAttribute('width','100%');
    var cell = ssObj.cell;
    cell.style.width = 'auto';
    cell.style.height = 'auto';
    cell.style.display = '';
    var pcell = ssObj.cell.parentNode;
    pcell.style.width = 'auto';
    pcell.style.height = 'auto';
    })(ShowPic);
    ExecuteOrDelayUntilScriptLoaded(SlideshowObjectInitializer, 'imglib.js');
    </script>
    Step 2. Add CEWP on page where Slideshow web part is located and in the Content Editor tool pane, under Content Link, type
    /SiteAssets/SlideshowObjectInitializer.txt. 
    If this helped you resolve your issue, please mark it Answered

  • Picture Library Slideshow Web Part - Is it possible to switch between two image librarys in one slideshow

    In our office we have a screen at the front desk that runs a PP slideshow showing welcome messages to guests arriving.
    SharePoint may not be the solution, but the overall objective is to find a way to have a library of X number of photos (say the library size is 30 images) and a separate library of X number of welcome messages (usually ~5 images).
    We want the slideshow to randomly pull 5 images from the 1st pool and then play the images in the 2nd Pool.
    Let me know if you have heard of a solution similar to this. Thanks!

    Hi Twirlz03,
    According to your description, my understanding is that you want to display teo picutre libraries in a picture slideshow web part in SharePoint 2010.
    By default, one Picture Slideshow web part only display images fron one specifical picutre library, it is unable to apply for multiple picture libraries.
    You can try to utilize Content Query web part to aggregate picture items from the site collection or site. However, you mean that you want the slideshow to randomly pull 5 images from first library and then play the images in the second library, I’m afriad
    that it is hard to achieve it.
    More information about aggregating picture items , please refer to section 4 of the link below:
    http://blog.vgrem.com/2013/04/27/beyond-the-slideshow-web-part-capabilities-in-sharepoint-2010/
    Best Regards,
    Wendy
    Wendy Li
    TechNet Community Support

  • Web Part Error: A Web Part or Web Form Control on this Page cannot be displayed or imported.

    SharePoint 2007 custom (VS 2008) solution is upgraded to SharePoint 2013 using (VS 2012). I followed this approach.
    I had created new empty project (solution) in SharePoint 2013 using (VS 2012) compiled and deployed successfully. All safe controls are registered in the web.config file. After deploying solution i Restarted IIS also, still getting this error. How to resolve
    Error
    Web Part Error: A Web Part or Web Form Control on this Page cannot be displayed or imported. The type could not be found or it is not registered as safe. Correlation ID: 5d217c9c-1827-7083-80cd-e095a30befee.
    Show Error Details
    Hide Error Details
    [UnsafeControlException: A Web Part or Web Form Control on this Page cannot be displayed or imported. The type could not be found or it is not registered as safe.]
      at Microsoft.SharePoint.ApplicationRuntime.SafeControls.GetTypeFromGuid(Boolean isAppWeb, Guid guid, Guid solutionId, Nullable`1 solutionWebId, String assemblyFullName, String typeFullName, Boolean throwIfNotSafe)
      at Microsoft.SharePoint.WebPartPages.SPWebPartManager.CreateWebPartsFromRowSetData(Boolean onlyInitializeClosedWebParts)
    <menu class="ms-hide" id="MSOMenu_WebPartMenu"><ie:menuitem id="MSOMenu_Minimize" text="Minimize" title="Collapse this web part." type="option"></ie:menuitem><ie:menuitem
    id="MSOMenu_Restore" text="Restore" title="Expand this web part." type="option"></ie:menuitem><ie:menuitem id="MSOMenu_Close" text="Close" title="Close this Web Part. You can still
    find it under closed Web Parts section in the insert ribbon. These changes will apply to all users." type="option"></ie:menuitem><ie:menuitem iconsrc="/_layouts/15/images/DelItem.gif" id="MSOMenu_Delete" text="Delete"
    title="Delete this Web Part from the page. These changes will apply to all users." type="option"></ie:menuitem><ie:menuitem type="separator"></ie:menuitem><ie:menuitem iconsrc="/_layouts/15/images/EditItem.gif"
    id="MSOMenu_Edit" text="Edit Web Part" title="Change properties of this shared Web Part. These changes will apply to all users." type="option"></ie:menuitem><ie:menuitem id="MSOMenu_Connections"
    text="Connections" title="Show connections options for this Web Part. These changes will apply to all users." type="option"></ie:menuitem><ie:menuitem type="separator"></ie:menuitem><ie:menuitem
    id="MSOMenu_Export" text="Export..." title="Export this Web Part. These changes will apply to all users." type="option"></ie:menuitem><ie:menuitem iconsrc="/_layouts/15/images/HelpIcon.gif" id="MSOMenu_Help"
    style="display:none;" text="Help" type="option"></ie:menuitem> </menu>        

    Hi Ashok,
    According to your description, my understanding is that you got an error after you re-built a SharePoint 2007 solution with VS2012, and deployed it.
    Make sure the Namespace and Type Name are consistent across all files where indicated. Also with matching case sensitivity. Verify web.config file and assembly in GAC or virtual directory bin folder in post deployment.
    More information, please refer to the link below:
    http://roykimsharepoint.wordpress.com/2013/04/27/classic-web-part-errors/
    Here is a similar post for you to take a look at:
    http://stackoverflow.com/questions/1689707/sharepoint-web-part-type-could-not-be-found-registered-as-safe
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Content Search Web Part Has No Results

    Hello,
    I have been working on a site for a few weeks now and have been trying to make a simple Image Slider. I have found many tutorials and all are helpful -- except I get stuck at the same part every time. I am trying to use a Content Search Web Part in order
    to pull images from a library/list and display them. I go through almost the same instructions every time but my query never shows any results.
    I have went in to 'Change Query' and set the following:
    Select a query: Pictures (System)
    Restrict By App: Specify a URL --> Then changed to mysite/myimagelibrary
    I have tried a few things. I have changed the Result Source to multiple different things, including the default 'Recently Changed Items.' I have also tried to put the images in a list rather than a Picture Library. I have also tried MANY different ways of
    putting in the 'specific URL.'
    I don't know why I can't seem to get results from my query. Any help or suggestions would be appreciated. Thank you.

    Hi,According to your post, my understanding is that you used a Content Search Web part to search images from a library/list , it didn’t display any
    Results.
    Please check which content type you used for these images . Maybe its content type is document rather than picture. Please make sure your images’ content type is picture.
    You can go in to 'Change Query' and set the following:
    Select a query: Items matching a content type(System)
    Restrict by App: Current site
    Restrict by content type: Picture
    As you have mentioned in your description “Specify a URL --> Then changed to mysite/myimagelibrary”.
    Here is a similar issue, you can use as a reference:
    http://social.technet.microsoft.com/forums/sharepoint/en-US/4a683be5-354d-4497-88da-672dd6335358/content-by-search-web-part-shows-no-results
    If the issue still exists, please feel free to let me know.
    Best Regards,
    Lisa Chen

  • Broken Web Part Issue

    Hi..
    We Restored Content Database backup from SharePoint 2010 to SharePoint 2013 environment and its restored correctly, but when we browsed the site, we are getting 
    Could not load file or assembly  or one of its dependencies. The system cannot find the file specified.
    But we don't have code for Custom Web Parts or wsp. so we tried by Web Part Maintenance Mode ( ?Contents=1), but didnot find the exact broken web Part Title..
    So how to resolve the above issue.
    Ravindranath

    try checking ULS logs woith corelation ID:
    C:\Program Files\Common Files\Microsoft Shared\Web Server Extensions\15\LOGS
    also try these links:
    http://stackoverflow.com/questions/1265505/sharepoint-could-not-load-file-or-assembly-the-system-cannot-find-the-file-sp
    http://sharepoint.stackexchange.com/questions/69897/could-not-load-file-or-assembly-or-one-of-its-dependencies-the-system-cannot-fi
    http://www.sharepointpals.com/post/Failed-to-load-receiver-assembly-SystemIOFileNotFoundException-Could-not-load-file-or-assembly-or-one-of-its-dependencies-on-Feature-Receiver-in-SharePoint-2013
    Please mark answer as correct if it is correct else vote for it if you find it useful Happy SharePointing

  • Search web part

    Hello,
    I'm trying to setup Search Results Web Part to display images from a certain list.
    I have 2 issues:
    1. I cannot create a managed property and use it as a search parameter (I succeeded to create a few managed property in the past but for some reason I cannot reproduce it). I've created a site column and added it to my list and started the full
    crawl a few times but can't seem to see it as a managed property under the search schema.
    2. I cannot use a managed property (datetime type) as a search parameter
    The managed property 'ImgFromDate' is <label for="ctl00_PlaceHolderMain_ctl04_ctl01_searchableCheckBox">Searchable, </label><label for="ctl00_PlaceHolderMain_ctl06_ctl01_queryableCheckBox">Queryable, </label><label
    for="ctl00_PlaceHolderMain_ctl07_ctl01_retrievableCheckBox">Retrievable, </label><label for="ctl00_PlaceHolderMain_ctl11_ctl01_safeForAnonymousCheckBox">Safe and Mapped to 'ows_</label>ImgFromDate'
    This is the search query I'm using: ImgFromDateOWSDATE<{Today}
    I always get this message:"We didn't understand your search terms. Make sure you're using the proper syntax"
    I'm using SharePoint 2013
    I searched for an answer in all Microsoft forums and I can't seem to find my mistake.
    Any suggestions would be very much appreciated.
    Thanks,
    Keren.

    Hi Aradk,
    According to your description, my understanding is that you got an error when using Serach Result Web Part, and want to know how to add a managed property in SharePoint 2013.
    Firsly, for adding a managed property, you can refer to the links below:
    http://technet.microsoft.com/en-us/library/jj219667.aspx
    http://blogs.technet.com/b/tothesharepoint/archive/2013/03/06/from-site-column-to-managed-property-what-s-up-with-that.aspx
    Secondly, about this error you met, which browser did you use? Please test it with IE 10, compare the result. Please add the following string to all web.comfig file:
    <globalization fileEncoding="utf-8" enableClientBasedCulture="false" />
    Note : before changing web.config, make a backup for the files.
    More information, please refer to the link below:
    http://sadomovalex.blogspot.in/2013/07/problem-in-kql-with-date-times-and.html
    Here is another similar post for your reference:
    http://social.msdn.microsoft.com/Forums/en-US/85e6674f-cc18-4930-bbb8-4c1c96c92b03/sharepoint-2013-core-search-query-template-with-datetime-managed-properties
    I hope this helps.
    Thanks,
    Wendy
    Wendy Li
    TechNet Community Support

  • Adding background image to portlet title bar

    Hi,
    Does anyone know how to add a background image to a portlet title bar. I have tried using the LAF editor but nothing seems to work. The image will be static and not change.
    Any help appreciated.

    Hi Chris
    You have to modify the .css file depending on the type of Skin you are using like "default" or "bighorn" in case of 10.x and 9.x etc. Best thing is to install Firebug for Firefox and inspect the Titlebar in firebug. That should tell exactly which .css file and which element in that .css file is used to render the Portlet Title bar.
    For "default" skin, the file is window.css and the element in this file is ".bea-portal-window-titlebar" with background-color: #XXXXXX. Replace this or add another field like background-image: url(your image path). This window.css file can be found under WebContent\framework\skins\default\css\window.css. Remember that in 9.x and 10.x to see this file from Workshop IDE, you need to switch view to Merged Projects and select this file and copy this to your project to view it. BUT, I would not recommend to modify any out of box .css file. Instead create a new file custom.css file and add entries in this file which you want to overwrite. This is the standard way to customize any out of box skins look and feel. So in your custom.css file your will have one entry like this:
    .bea-portal-window-titlebar {
    background-image: url(your image path)
    For "bighorn" skin introduced in 9.x and 10.x, the elements in .css files are slighty different but the concept is same. I customized out of box bighorn skin to change background color of portlet title bar. The .css location for portlet title bar for bighorn skin is: WebContent\framework\skins\bighorn\css\colors.css and the element is ".wlp-bighorn-titlebar". For quick testing from Firebug, inspect this element and change the background color to something else and see if it reflects in Firefox. Then you can create custom.css file under same folder structure in your portal web project and over write this element and this field alone with the background-image that you want something like:
    .wlp-bighorn-titlebar {
    background-color:#FF0000;
    background-image:url(your image path);
    It is highly recommended to have all customizations go into custom.css file only. Please make sure that you have this custom.css file entry in the skin.xml file (in case of bighorn) or skin.properties file (in case of old legacy default skin). This .xml or .properties file can be found under same folder structure like: WebContent\framework\skins\yourSkin. For new bighorn skin.xml file this custom.css file entry is already there. But for old legacy default skin you may need to add this entry.
    HTH
    Ravi Jegga

  • How to Show Image form Library with Thumbnail view on visual Web part page using XsltListView web part?

    <WebPartPages:XsltListViewWebPart ID="XsltListViewWebPart_AppWeb"
    runat="server" ListUrl="Lists/MyList" IsIncluded="True"
    NoDefaultStyle="TRUE" Title="XsltListView web part" PageType="PAGE_NORMALVIEW"
    Default="False" ViewContentTypeId="0x">
    </WebPartPages:XsltListViewWebPart>
    For any List it work fine but for Image form library its not working:
    My url: http://sitename:portname/PublishingImages/Forms/AllItems.aspx
    Please provide Solution.
    Question:How To show image library with thumbnail view in Visual Webpart using xslt webpart.

    Is it throwing any error?
    do you set correctly the ListUrl parameter? in this case it will be "PublishingImages"

  • Displaying an icon in the title bar of a web page

    Hi Friends,
    Pls temme how 2 display a given icon in the title bar of a web - page, i mean in the title bar of the web - browser which loads the page.
    Thanks in advance,
    Kottayam Achayan

    Hi Friends,
    Pls temme how 2 display a given icon in the title bar
    of a web - page, i mean in the title bar of the web -
    browser which loads the page.
    Thanks in advance,
    Kottayam AchayanIn web.xml, you can use the <icon> element to specify the image to be used.
        <icon>
            <small-icon><!-- Specify a 16X16 GIF or JPG --></small-icon>
            <large-icon><!-- Specify a 32X32 GIF or JPG --></large-icon>
        </icon>Hope this helps.
    Annie.

  • Disable link for a Image in Content editor web part

    Hi
    i want to disable hyperlink for a banner added using content editor web part. Instead of hiding using Target Audience, i want to disable the link.
    Please help me how can i achieve this?
    regards,
    Vinay
    Thanks and Regards, vinnu

    Hi Vinay,
    I recommend to disable the link for an image using Jquery in Content Editor web part.
    First, you need to use F12 tool in Internet Explorer(IE) to get the html tag for the image, and you’d better find the class or id value for the tag of the image.
    For example, if the class for the image is test, then the code should be:
    <script type="text/javascript" src="http://code.jquery.com/jquery-1.8.2.js"></script>
    <script type="text/javascript">
    $('.test').click(function(e) {
    e.preventDefault();
    </script>
    You can also paste the code of the image here for further research.
    Best regards.
    Thanks
    Victoria Xia
    TechNet Community Support

Maybe you are looking for

  • Switch makes AirPort invisible to AirPort Utility?

    Hi all. Wired connections: iMac27" Yosemite connected to a D-Link dumb switch connected to a AirPort Extreme v7.7.3. When wiring run through switch, iMac intermittently can't see the APE. Removing switch from setup and going direct iMac->APE resolves

  • Split Document Feature

    I apologize if this is already listed somewhere in the forums, although I'm just trying to determine if the Standard version of acrobat (299.99) has the Split document function, and that it operates the same as the Pro version (I had been using it in

  • HT4623 is there a way to time stamp messages?

    is there a way to time stamp messages?

  • Change 1D array of 32 bit integer to 1D array of BV tag

    i just want to change 1D array of 32 bit data type to 1D array of BV tag to display this in Historical trend viewer an urgent reply wud b highly appreciable VINO

  • I don't know how I can optimize this SQL

    Dear ALL: I don't know how I can optimize this SQL. Is it possible to make a better SQL or PL/SQL? Please let me know your good thought. Thank you. Sincerely, =========================================================== (SELECT     A, B, C, SUM(D) as