Hello,
Please go to Dashboard -> Appearance -> Customize -> Theme Options -> Theme General Options -> Custom CSS
insert code into Custom CSS box and save –
@media(max-width:767px){
.enigma_header_breadcrum_title{
display: none !important;
}
}
Thanks.
It works! Thank you very much.
I have also another question.
After the update, the header has become total white. I insert this code, but it doesn’t work.
.header_section {
background-color: #31A3DD !important;
Thanks.
Please insert code into Custom CSS box and save –
.header_section {
color: #fff;
background-color: #31A3DD !important;
}
It works on a mobile device, but not on desktop.
Thanks.
Remove this CSS First
.header_section {
color: #fff;
background-color: #31A3DD !important;
}
Then insert code into top of the Custom CSS box and save –
.header_section {
background-color: #31A3DD !important;
}