Discussions

Eloqua's Tip Tuesday: Brand Your Eloqua Landing Page Browser Tabs

JodyMooney-Oracle
JodyMooney-Oracle Outbound Product Management, EloquaTorontoPosts: 299 Employee
edited Nov 22, 2022 9:58PM in Eloqua

Welcome to “Tip Tuesday”! Each week we post interesting tips and tricks for Eloqua users, on Tuesdays. To see more Tip Tuesday posts, head here.

This week’s tip is brought to us from @Karen White-Oracle, Oracle Marketing Consulting Manager.

Did you know that you can brand your Landing Page Browser Tabs in the Design Editor?

For a good brand experience, it's a great idea to mirror what you do on your website within your marketing including your landing pages. In fact, you can even add a favicon (icon) in the browser tab to make it easy to recognize that it's content from your brand.

For example, without adding a favicon, your landing page tabs will look like the one on the left. On the right, you'll see an example with branding. You'll notice it's a better user experience linking Eloqua landing pages with your web pages.


Curious how to accomplish this in the Design Editor?

It's pretty straight forward to add a favicon image to your Eloqua Landing Pages! In fact, all you need to do is add the following Javascript in Landing Page Settings within the Code and Tracking area for the desired landing page.

Add the Javascript below into the Additional Javascript section and update with your Brand or Page Title and add the url to your desired favicon.


Here's the base code you can copy/paste and modify to add favicons to your Eloqua Landing Pages:

window.onload = function()
{ var title = document.createElement('title'); 
title.innerHTML = "[Brand Here/Page Title]";   document.getElementsByTagName('head')[0].appendChild(title);    
var favicon = document.createElement('link');   favicon.type = 'image/x-icon';   favicon.rel = 'shortcut icon';   favicon.href='[IMAGE URL HERE]';   document.getElementsByTagName('head')[0].appendChild(favicon);};

Thanks for another great tip @Karen White-Oracle!

If you found this post interesting, you may also want to check out a previous tip we shared talking about how you can display your logo next to your email in the inbox!



Additional Resources:


Have an Eloqua tip you would like to share for a future “Tip Tuesday” post?

Drop me (@JodyMooney-Oracle) a message via Topliners with your tip including any relevant screenshots/links to help share your favorite tips with fellow Eloqua users. If your tip is selected, we’ll tag you in the post too!


Group Product Manager, CX - Marketing: Eloqua

Post edited by JodyMooney-Oracle on

Comments