Skip to main content
Best Answer

Updating text per Extended Enterprise instance

  • March 13, 2023
  • 6 replies
  • 97 views

JeanetteMcVeigh
Hero III
Forum|alt.badge.img+7

Hi.

We use Extended Enterprise. One of the enterprises is asking for localisation for things specific to them. We all use English_UK as a language and specifically they want the generic 403 error page to be different than the default one that we use.

I know that I can turn languages on and off for the enterprise, but I don't see an opportunity to modify that instance just for that enterprise.

Currently, for now, I updated the text on the 403 error page to be more inclusive of these enterprises, but it would be ideal to have it be completely different per enterprise when I need it.

Any ideas? Am I missing something? Thanks in advance for your guidance. Kind regards, jeanette

Best answer by lrnlab

Localization changes are global and cannot be applied only to a sub domain...sorry...

6 replies

lrnlab
Hero III
Forum|alt.badge.img+10
  • Hero III
  • Answer
  • March 13, 2023

Localization changes are global and cannot be applied only to a sub domain...sorry...


JeanetteMcVeigh
Hero III
Forum|alt.badge.img+7

Localization changes are global and cannot be applied only to a sub domain...sorry...

That is what I thought, but figured I would come here to confirm. Thanks! Guess it’s time to add another Idea!  :-)


lrodman
Guide II
Forum|alt.badge.img+6
  • Guide II
  • March 13, 2023

You’re going to want to edit the CSS for that extended enterprise instance. If you want to replace text, you can do that by hiding existing text, then making new text with ::before or ::after.

 

Here’s code to change the image - if you put this in that EE instance’s CSS, it will only apply to that EE instance. 

 


/*custom 403 error image*/
.internal-error-content .wrapper .error_image {
    background: url(https://docebo-institute.s3.us-east-2.amazonaws.com/public/branding_hacks/403.png) no-repeat;
    height: 400px;
    background-size: contain;
    max-width: 400px;
    background-position: top;
    margin: 0 auto;
} .internal-error-content .error_image img {    visibility: hidden;}
/*trying to reduce margins on 403 */
.internal-error-content .wrapper {    padding-top: 0px !important; }
/*replace xo background image*/
.internal-error-content .wrapper {    
    background: url(https://docebo-institute.s3.us-east-2.amazonaws.com/public/branding_hacks/403-bknd.png) !important;
 }
 

 


lrnlab
Hero III
Forum|alt.badge.img+10
  • Hero III
  • March 13, 2023

@JeanetteMcVeigh I’ll vote for that!


JeanetteMcVeigh
Hero III
Forum|alt.badge.img+7

 


lrnlab
Hero III
Forum|alt.badge.img+10
  • Hero III
  • March 13, 2023

done