+
diff --git a/landingPages/result/resultLanding.component.ts b/landingPages/result/resultLanding.component.ts
index 58c227a1..efb9dd83 100644
--- a/landingPages/result/resultLanding.component.ts
+++ b/landingPages/result/resultLanding.component.ts
@@ -231,7 +231,12 @@ export class ResultLandingComponent {
ngAfterViewInit() {
if (typeof document !== 'undefined') {
- this.offset = Number.parseInt(getComputedStyle(document.documentElement).getPropertyValue('--header-height'));
+ // if(properties.adminToolsPortalType !== 'eosc') {
+ if(document.getElementById("main-menu")) {
+ this.offset = Number.parseInt(getComputedStyle(document.documentElement).getPropertyValue('--header-height'));
+ } else {
+ this.offset = 0;
+ }
// let bottom = document.getElementById('bottom');
// if(bottom) {
// let observer = new IntersectionObserver(entries => {