Element.style?

I am trying to modify the following css element:

element.style {
overflow: hidden;
position: relative;
height: 1270px;
}

I need the overflow to be changed from hidden to auto.

I try to through the global editor but it doesn’t change… Any help?

Hi there,

Would you mind providing the URL to your site and the admin access if there is a coming soon page active on your site?

We could provide a CSS suggestion to override the inline CSS that is added to the page element but we will need to check which element to target.

Thank you.

I am working on the following page.

https://romclassics.com/category/roms/

When I click load, that css element is preventing the infinite scroll setup from working. There are a couple of other issues to go along with it but that needs to be solved 1st.

Thanks.

Hello @shanebellone,

Thanks for updating the thread. :slight_smile:

Please try adding following CSS under Pro > Theme Options > CSS:

.archive.category .x-iso-container {
    overflow: auto;
}

Thanks.

I tried there already but I gave your code a shot. I cleared the cache and refreshed multiple times. It does not update.

Added !important and it is working now. Thank you very much for the help.