Ahh he still has version 1.0 and an outdated WordPress. Why aren’t these updates showing in the Dashboard? How can I update them without FTP?
Updating did not do the trick.
Hi,
Are you using Evolve 3.6.2 with reduxframework plugin?
Thank you
Are people still having the same problem? The navigation, logo source link, and maps are still not working. I’ve tried updating everything.
Hi,
There is no problem with navigation.
Some users have problem with logo, but I am not having any problem with logo.
The google maps are not working in the contact form.
You can physically embed a map in content.
https://support.google.com/maps/answer/144361?co=GENIE.Platform%3DDesktop&hl=en
The author already knows about the google map and logo issue.
You will have to wait for him to provide a fix in next theme update.
Thank you.
Hello,
I have a problem with evolve theme (free theme) on WordPress. After the update the menu changed and I don’t know what to do. Can you check http://romexperiencetravel.it ? Thank you
Moderator
Jan Dembowski
(@jdembowski)
Forum Moderator and Brute Squad
Ok this is taking way too long for an update. My clients site has now been in maintenance mode for a week. The navigation is not fixed it was black. The whole theme is black and didn’t have a white nav bar. Once I scroll down the page the bar is black again. This should not be taking this long for a theme update.
I managed to fix the logo it just appeared after trying again. Managed to fix the map by deactivating the cache. Now I am trying to get the navigation menu back to black with white links and it’s not working.
Hi,
If you are referring to making the menu of this site black.
http://bayareastattoolab.com/
You can use the following in Theme Options -> Custom CSS
.menu-header {
background: #000 none repeat scroll 0 0 !important;
}
.nav li {
background: #000 none repeat scroll 0 0 !important;
}
.nav li a {
text-shadow: none !important;
color: #fff !important;
}
ul.nav-menu li a:active, ul.nav-menu li:active > a, ul.nav-menu li a:focus, ul.nav-menu li:focus > a, ul.nav-menu li a:hover, ul.nav-menu li:hover> a, ul.nav-menu li:hover, ul.nav-menu li a:hover span, ul.nav-menu li:hover> a span, ul.nav-menu li:hover> .sf-with-ul::after {
color: #fff !important;
}
This is how it will look like.
http://image.prntscr.com/image/1c97aa46931e480a9291a9ca03594394.png
Please remove any menu related custom css code that you had added, so as not to cause conflict with the code I provided.
Thank you
Thank you. To make the border black would this code work:
border-color: #fff !important;
I appreciate it.
Hi,
What’s remaining on your menu now is the box-shadow.
Use the following to remove it.
.menu-header {
box-shadow: none !important;
}
Thank you