I figured out how to change the announcement bar message text size & color etc. in regular Computer View in the Minimal Theme. I just used this code:
.header-bar__message {
font-size: 22px !important;
color: #FFFFFF !important;
}
However, it didn’t affect it in MOBILE VIEW.
I figured out I can use THIS code for Mobile View, and it Works:
.header-bar {
font-size: 22px !important;
color: #FFFFFF !important;
}
Also, I have also seen people use THIS code:
.header-bar__module {
font-size: 22px !important;
color: #FFFFFF !important;
}
So it appears that the following is the case:
.header-bar__message is for COMPUTER VIEW Only ???
.header-bar is for MOBILE VIEW Only ???
So then what is THIS For:
.header-bar__module
What on earth is THAT one for?
***EDIT: I also figured out that .header-bar is NOT just for MOBILE VIEW ![]()
What code do I use to edit the announcement bar text SEPARATELY For COMPUTER View AND MOBILE View ???
Like I want two separated blocks of code, one for COMPUTER View, And one for MOBILE View
Is this Possible?
