Hide the scroll down icon on very small mobile screens when they overlap the buttons.
/* -- Hide scroll down arrow on very small screens -- */
@media (max-width: 320px) {
.et_pb_fullwidth_header_0.et_pb_fullwidth_header
.et_pb_fullwidth_header_scroll a .et-pb-icon {
display: none;
}
}
Code language: CSS (css)