- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2018 11:52 AM
Trying to update our Header Logo to redirect to an outside URL, but can't seem to find the code to do this.
Basically where the id=lcb_home, I want that to go to an outside link. I have looked in the CSS, Widgets, and Page area and can't seem to locate where I can make this change.
Thanks.
Jason
Solved! Go to Solution.
- Labels:
-
Service Portal Development
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2018 12:54 PM
It's there... see the two lines that include:
<a ... href="?id={{portal.homepage_dv}}"
Just change that to:
<a ... href="http://URL.com"
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
05-31-2018 01:09 PM
We figured it out. It is in the body of the code.
Basically changed the href reference on this line to our new external link.
<a class="navbar-brand navbar-brand-logo" ng-if="::portal.logo" href="?id={{::portal.homepage_dv}}">
<a class="navbar-brand navbar-brand-logo" ng-if="::portal.logo" href="https://business.uc.edu">
Thanks.
Jason