ho to hide a custom logo image on mobile view?
thx
Hi ewerde!
Please add following code to Quick CSS in Enfold theme options under General Styling tab
@media only screen and (max-width: 768px) {
.logo img { display: none !important; }}
Cheers!
Yigit
oh sorry, i want to remove the logo _background_ image
thx
Hey!
Please try changing the code to following one
@media only screen and (max-width: 768px) {
.header_bg { background: none !important; }}
If that does not work, please post the link to your website
Regards,
Yigit
it also takes away now the background color on mobile
prototype: http://kunstpiste.onlinerin.at/
Hi!
Please change the code to following one
@media only screen and (max-width: 768px) {
.header_bg {
background-image: none !important;
}}
Cheers!
Yigit
works fine now – thank you for being so swiftly :-)