Customizing links in the logo (header) and in the "Course Catalog" (footer)
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-16-2022
04:50 PM
Hi all,
We have a main catalog landing page at the U of British Columbia (https://courses.cpe.ubc.ca/). It is currently empty - no sub-catalogs are displayed on this page. I am admin on my group’s sub-catalog (BRIMM (ubc.ca)). There are two links on our sub-catalog page that point to the main landing page - the logo in the header and the “Course Catalog” link in the footer. Since the main landing page is empty, we don't want any references from our sub-catalog page to the main page. Our IT is not able to customize these links for us. But, they told me I can customize them with JavaScripts. Has anyone done it in a similar situation - with JS or using a different solution? Thanks!!
Solved! Go to Solution.
1 Solution
- Mark as New
- Bookmark
- Subscribe
- Mute
- Subscribe to RSS Feed
- Permalink
- Report Inappropriate Content
11-18-2022
01:26 AM
Hi Ella!
For the logo:
$('.header-branding .logo-customized a').attr("href", "put link to page here");
For the "course catalog" text in the footer:
$('.col-md-12 .piped-list li:first-child a').attr("href", "put link to page here");
The link to put is to the subcatalog or wherever they want the students to go 😄
For the logo:
$('.header-branding .logo-customized a').attr("href", "put link to page here");
For the "course catalog" text in the footer:
$('.col-md-12 .piped-list li:first-child a').attr("href", "put link to page here");
The link to put is to the subcatalog or wherever they want the students to go 😄