Remove spacing between text and button

Hi there,
I created a great layout with cornerstone for a new version of our home page.
On desktop it looks great, but on mobile there is to much space between the classic feature box and the button underneath that should link to the website. Is there any chance to remove or design that spacing?

Would be nice if you hava a look: https://two-b.design/neue-startseite/

Hi @feefashion,

Thanks for writing in.

You could use @media query to adjust a class or an id in a specific screen size.

For example, this code below will adjust its margin on a 768px width screen size.

Add this code in your custom CSS:

@media (max-width: 768px){
#cs-content .e2411-23.x-anchor, .e2411-26.x-anchor, .e2411-29.x-anchor, .e2411-37.x-anchor, .e2411-40.x-anchor, .e2411-43.x-anchor {
    margin: 1.43em;
    }
}

Or you could use hide during break point functionality of cornerstone. Check the link below to explain more regarding this functionality.

Hope it helps.

Let us know how it goes.

Thanks.

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