A group of Microsoft Products and technologies used for sharing and managing content, knowledge, and applications.
Hi again,
We can modify the page layout from the back end with some script like this, but it doesn't seem be able to be realized in SharePoint Online since we can not change the layout.
if($(window).width() < 1438)
{
$("#arrow-down").click(function() {
$('html,body').animate({
scrollTop: $("#officina-page").offset().top -120},
'slow');
});
}
else if($(window).width() > 1439 && $(window).width() < 1558)
{
$("#arrow-down").click(function() {
$('html,body').animate({
scrollTop: $("#officina-page").offset().top -130},
'slow');
});}
Regards,
Jason