How do I dynamically reference a css file in a tag when I need the root domain to change with our environments?

8 REPLIES 8

How do I dynamically reference a css file in a tag when I need the root domain to change with our environments?

Tealium Employee
Joe, one of our solutions guys may have something better, but you can try this. Add your production version of Opinion Lab, then duplicate it twice once for Dev and once for QA. Set the CSS paths for each Opinion Lab instance respectively. Go into edit mode for the tag and under Advanced Settings for the tags there is a "publish to" configuration. Set the dev instance to publish to dev, and not to qa and prod, rinse and repeat for the other two tags. You should have a situation where when publishing to dev the Opinion Lab Dev tag publishes with the correct CSS path, etc. We have another feature that is coming out which is target (dev, qa, prod) specific configs for each tag. When this is released you'll be able to enter specific configurations for each target environment. This will be helpful when you have different accounts for different environments.

How do I dynamically reference a css file in a tag when I need the root domain to change with our environments?

Gold Contributor
Gold Contributor
Awesome. Thanks for the quick reply.

How do I dynamically reference a css file in a tag when I need the root domain to change with our environments?

Tealium Employee
Wouldn't it just be easier to use a relative path to the CSS file instead of an absolute path? Example absolute CSS call: href="http://www.tealium.com/styles/tealium.css" Example relative CSS call: href="/styles/tealium.css" Therefore if you load from the TEST environment "/styles/tealium.css" will call https://hub2-Test.lfg.com/styles/tealium.css or if you load from the QA environment "/styles/tealium.css" will call https://qa.lfg.com/styles/tealium.css". Or does the path need to be absolute? I know the configurations say to use the full path, but just curious why.

How do I dynamically reference a css file in a tag when I need the root domain to change with our environments?

Community Manager
Community Manager
Hi Joseph, You should be able to use the relative path to the CSS file in the OpinionLab setting. /hub/SimpleFile?dDocName=HUB_013794&RevisionSelectionMethod=LatestReleased&inline=true
Remember to "Accept as Solution" when your question has been answered and to give kudos to helpful replies.

How do I dynamically reference a css file in a tag when I need the root domain to change with our environments?

Gold Contributor
Gold Contributor
I was under the impression the relative path would resolve to the tealium cdn since that is where the code is being served from, no?

How do I dynamically reference a css file in a tag when I need the root domain to change with our environments?

Tealium Employee
While the code is servered from the CDN, the webpage still makes the call out to OL since we just inject the call into the page.

How do I dynamically reference a css file in a tag when I need the root domain to change with our environments?

Tealium Employee
No, Dan and Justin are correct with the relative paths. The path will be relative to the container page URL and not our CDN.

How do I dynamically reference a css file in a tag when I need the root domain to change with our environments?

Gold Contributor
Gold Contributor
That makes it easy. Thanks.
Public