Skip to main content
Question

Customizing public custom pages for Extended Enterprise domains with CSS

  • September 21, 2026
  • 1 reply
  • 10 views

How can I hide some of the public custom pages on Extended Enterprise domains with CSS?

I have over 50 EE domains and would like to select which external pages I make visible for some of the EE domains. 

1 reply

Hi,
So we do this by leveraging different stylesheets for each EE (available in each EE’s “Branding & Design” area).
Every public custom page is a “tab” in the DOM (the catalog is tab #1):

So for each EE with hide the irrelevant ones using nth-of-type:
For example, if I was trying to hide the 3rd public custom page I would use code similar to:

doc-layout-external-ecommerce{
tab:nth-of-type(4){display:none;}
}

We wrap it in the doc external element to ensure the code doesn’t impact any internal tabs, but it may not be strictly necessary.

We’ve hidden the tab labels area - but depending on your layout, you’d have to target the appropriate tab label as well.

Hope that helps!