Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Issue of scrolling with SEO sitemap plugin #84

Open
Laijiajia opened this issue Aug 10, 2023 · 5 comments
Open

Issue of scrolling with SEO sitemap plugin #84

Laijiajia opened this issue Aug 10, 2023 · 5 comments

Comments

@Laijiajia
Copy link

Laijiajia commented Aug 10, 2023

We are using sitemaps plugin for CMS12. As seen in the picture, it is not possible to scroll the righthand pane and you thus can't access all information.
image

@jaymarvels
Copy link

I believe this is due to the UI changes in the CMS as part of update 461: https://world.optimizely.com/releases/optimizely---pdate-461

The display container for this plugin will probably need some CSS like this:

{
height: calc(100vh - 40px);
overflow: auto;
}

@dariusz-wozniak
Copy link

Yes, plus - if you have multiple sitemaps, it's impossible to scroll the list of sitemaps :(

@huseinatst
Copy link

Hi, is there any solution for it? I have multiple sitemaps and it's getting really impossible to use this plugin.
geta_sitemap1

and I have to scroll out to load the page, and add the sitemap :(
geta_sitemap2

have any one found the solution, please share it.

@oleksa-vlad
Copy link

oleksa-vlad commented Apr 8, 2024

Hi
Seems solution is to move @RenderBody() inside

<div @Html.Raw(Html.ApplyPlatformNavigation()) style="z-index:auto;">
</div>

So result should be like this :

<div @Html.Raw(Html.ApplyPlatformNavigation()) style="z-index:auto;">
      @RenderBody() 
</div>

in this file: src/Geta.Optimizely.Sitemaps/Geta.Optimizely.Sitemaps.Views/Views/Shared/_ShellLayout.cshtml

image

Hope It will be useful.

@huseinatst
Copy link

Hi Oleksa,

image
I don't see this file in entire solution, how should I make this changes?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Projects
None yet
Development

No branches or pull requests

6 participants