@jac Easily done, but it’s not entirely “simple”
This is the CSS that handles that
.Hero {
background: #8A8C8E;
position: sticky;
left: 0;
right: 0;
margin-left: -50vw;
margin-right: -50vw;
width: 100vw;
z-index: 500;
padding-top: 10px;
margin-top: -20px;
margin-bottom: 30px;
height: 70px;
color: #ffffff;
}
ul.PageHero-items li {
list-style: none;
text-align: center;
}
.PageHero-title {
vertical-align: middle;
font-size: 3rem!important;
color: #ffffff;
font-family: Poppins;
display: inline-block;
margin-left: 15px;
max-width: 800px;
}
h2.PageHero-title::after {
display: flex;
margin: -10px 0 0!important;
font-size: 2rem;
font-weight: 300;
-webkit-background-clip: text!important;
-webkit-text-fill-color: transparent;
background: -webkit-linear-gradient(#fff,#aaa);
line-height: 2.0;
font-family: poppins;
}
You’ll then need a global widget with this code
<header class="Hero PageHero">
<div class="container">
<ul class="PageHero-items">
<li class="item-title">
<h2 class="PageHero-title">{title}</h2>
</li>
</ul>
</div>
</header>