Buy me a coffee

Mobile Information Bar

#1. Change bar background color

div.sqs-mobile-info-bar {
    background-color: #f1f !important;
}

#2. Change text color

div.sqs-mobile-info-bar * {
    color: #f1f !important;
}

#3. Add a opacity behind bar

div.sqs-mobile-info-bar {
    background-color:rgba(0,0,0,0.5) !important;
}

#4. Make bar always visible on mobile

div.sqs-mobile-info-bar {
    bottom: 0 !important;
    transform: unset !important;
}

#5. Move position from bottom to top

div.sqs-mobile-info-bar {
    bottom: unset !important;
    transform: unset !important;
    top: 0 !important;
}
div.sqs-mobile-info-bar-hide {
    transform: translateY(-100px) !important;
}

#6. Remove text, keep icon only

span.sqs-mobile-info-bar-trigger-label {
    display: none;
}

#7. Remove icon, keep text only

span.sqs-mobile-info-bar-trigger-icon {
    display: none;
}

Extra Text

#1. Change bar background color

#2. Change text color

#3. Add a opacity behind bar

#4. Make bar always visible on mobile

#5. Move position from bottom to top

#6. Remove text, keep icon only

#7. Remove icon, keep text only