Tagged: demo import
Hello there!
first of all congratulations for the great job you did with the latest version!
1. I would like to import some demos but I don´t know how it´s going to affect my excisting site.
Can I import e.g. the “Coming soon” Demo without any problems or without messing up the excisting content?
2. I had the header (menu) in mobiles fixed through the quick css and it worked fine. After the update I get some empty space plus the header isn´t fixed anymore, here is the Code I used:
@media only screen and (max-width: 990px) {
.responsive #top #header {
position: fixed;
}
.responsive #top #main {
padding-top: 80px !important;
}}
Any help please to make this work again?
Best regards
Asterios
Site: test.koelner-musikakademie.de
Hi koelnermusikakademie!
Thank you for using Enfold.
1.) Importing demos will override your theme options. You will need to create the coming soon demo manually.
2.) Please use this:
@media only screen and (max-width: 767px) {
.responsive #top #wrap_all #header {
position: fixed;
}
}
Regards,
Ismael
Hi Ismael and thanks for your reply!
I used the code you sent me but the Header was overlaping the slider.
So I combined the old with the new code and the result is:
@media only screen and (max-width: 767px) {
.responsive #top #wrap_all #header {
position: fixed;
}
.responsive #top #main {
padding-top: 80px !important;
}}
It works now!
thanks a lot
Asterios