0

Scrollable Block

Deven Meza 3 years ago in BLOX CMS updated by Maureen Reinert 3 years ago 1

Hello is there a scrollable block template similar to the "latest news" block in the link below?

https://www.theplainsman.com/

I don't believe there is a block like that. However, you can achieve that same look by applying a custom CSS class to a block (at the bottom of the appearance tab) then editing the css.utl template to set up the styles to make it look like that. For example, you could use a Card: Grid with the Display Mode set to Grid and the Columns set to 1. Then make the styles for the custom class something like:

width: 300px;

height: 450px;

overflow: scroll;

That would give you a scrolling block similar to the one on that page.