Branding Results.aspx

Hi,

Please go through below link if you can update site logo from UI :

http://sharepointadam.com/2012/07/17/how-to-change-the-site-logo-in-sharepoint-2013/

If you want to do through client scripting , please use below link:

http://academy.bindtuning.com/customize-sharepoint-2013-and-office-365-suite-bar/

Thanks,

Lalita

June 17th, 2015 3:29am

Thanks for your Help.

But this is not the right thing.

The logo is changed. But I want now change the URL behind the logo.  

In the masterpage I changed it and it works fine on the result pages is still the old url. I like to point the url to the root site of the Intranet (not the root of the site Collection).

Regards

Stefan

Free Windows Admin Tool Kit Click here and download it now
June 17th, 2015 8:26am

Hey,

I have to brand a search result page in SharePoint 2013. I have to change the URL on the Logo to the Intranet Startpage.

But all what I do, nothing works.

Can you please help me?

Thanks for help

Stefan

June 17th, 2015 11:33am

Could you please tell how you are performing this.  Below is the code you can use to update URL :


web.SiteLogoUrl = "LogoPath/logo.png";
web.Update();

Thanks,

Lalita

Free Windows Admin Tool Kit Click here and download it now
June 17th, 2015 11:43am

Thanks for your help.

I have only SiteCollection access.

June 17th, 2015 11:49am

Hi Stefan,

If you can use SharePoint Designer , then please find 

<SharePoint:AjaxDelta id="DeltaSiteLogo" BlockElement="true" runat="server">

and remove everything inside it and  add below code (in bold):

<SharePoint:AjaxDelta id="DeltaSiteLogo" BlockElement="true" runat="server">
<a href="http://www.google.com">
<SharePoint:SiteLogoImage CssClass="ms-siteicon-img" name="onetidHeadbnnr0" id="onetidHeadbnnr2" LogoImageUrl="/_layouts/15/images/siteIcon.png?rev=23" runat="server"/>
</a>

</SharePoint:AjaxDelta>

You can directly change image url from here as well.

Hope it will help you.

Thanks ,
Lalita

Free Windows Admin Tool Kit Click here and download it now
July 15th, 2015 7:38am

Hi,

One easy way is to modify the logo my using JavaScript/mQuery which is included in SharePoint. Add the following snippet to your page (masterpage, page layout, script editor part)  and it should change.

EnsureScriptFunc('mQuery.js', 'm$', function() {
    m$(".ms-siteicon-a").attr("href", "http://yoursite");
});

July 15th, 2015 9:47am

This topic is archived. No further replies will be accepted.

Other recent topics Other recent topics