Alignment issues - the grid

Hi,

I have an annoying little issue which I can’t seem to resolve.

The plugin is - The Grid

issue: alignment is showing white space gap even when set to full width with css or within The Grid ID options.

Once i resize the window or scroll through it seems to work.

I tried looking at the css and found this line:

`tg-grid-slider {    overflow: hidden; }` 

tried adding this line below: within the home page cornerstone css editor. it worked but then stopped the right arrow from appearing and when you scrolled all the way to the left the white gap appeared.

 .tg-grid-slider {
        overflow: visible !important;
    }

here is a screenshot with the added code above. it now goes full width but right arrow has vanished unless i resize the window which is odd & white gap still appears when i scroll all the way right.

not sure what is causing this annoying little issue. any ideas?

thank you in advance!

Hi @lenvirthus,

Thanks for reaching out.

Yes, it’s a bit weird and should be displayed since the z-index is correct, and can’t even display it with CSS. Instead, please add this code to your global custom javascript.

jQuery (window).load ( function() {

jQuery( window ).resize();

} );

I could be due to the settings too but I couldn’t tell since the generated code is obscured.

Thanks!

This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.