To enable a sticky header, navigate to:
System → Template Styles → Template Options → Basic → Header
Then, enable the Sticky Header option.
To prevent the title from breaking into two lines, use the following CSS:
@media (max-width: 767.98px) {
#sppb-addon-c3aa6e8f-551f-4780-aa98-1bba138925dd .sppb-addon-header .sppb-addon-title {
font-size: 52px;
}
}
@media (max-width: 575.98px) {
#sppb-addon-c3aa6e8f-551f-4780-aa98-1bba138925dd .sppb-addon-header .sppb-addon-title {
font-size: 40px;
}
}
Thanks,