You can remove the Proficia text with this custom CSS:
.mean-container .mean-bar::before {
content: "" !important;
}
If you have a mobile-sized version of your site logo at url /url
, you could swap out the Proficia text with your logo like this:
.mean-container .mean-bar::before {
content: url('path/to/url') !important;
}
Hope this helps!
-
This reply was modified 6 years, 1 month ago by grandwazoo.