Topic Resolution: Resolved
  • Closed
  • tim rosenthal
    Spectator
    18.08.2016 at 18:27 #29860

    I’m having a terrible time fixing my CSS file. A colleague accidentally updated the Evolve theme and now its all sorts of messed up and I can’t seem to fix it.

    The second problem is that the wordpress customization menus are not updating the page. For example, I have fontawesome icons on the home and in the editor, I’ve specified a color. These colors are not showing up.

    here is the site – http://www.annesquest.org.

    And here is how it should look https://web.archive.org/web/20160305061547/http://annesquest.org/.

    Roman
    Spectator
    Posts: 3147
    18.08.2016 at 20:19 #29861

    why dont you revert to the original theme? do you use some customizations?

    tim rosenthal
    Spectator
    Posts: 6
    19.08.2016 at 18:02 #29874

    Well I tried doing a reverting but that looked worse and I just paid for Evolve Plus. The problem is that Evolve + is missing a lot of files. When my site loads, the debugger shows a ton of 404s from files missing. What gives?

    Here is a sample of these:
    http://annesquest.org/wp-content/themes/evolve-plus/fonts/fontawesome/fonts/fontawesome-webfont.woff2?v=4.6.3

    http://annesquest.org/wp-content/themes/evolve-plus/library/media/images/shadow.png 404

    http://annesquest.org/wp-content/themes/evolve-plus/library/media/images/icon-category.png 404

    http://annesquest.org/wp-content/themes/evolve-plus/library/media/images/btop.png 404

    http://annesquest.org/wp-content/themes/evolve-plus/fonts/fontawesome/fonts/fontawesome-webfont.woff?v=4.6.3

    The big question remains is why are my customizations within wordpress (such as changing the FA icon) not working?

    Roman
    Spectator
    Posts: 3147
    19.08.2016 at 20:56 #29878

    are you using a cache plugin? did you clean its cache?

    tim rosenthal
    Spectator
    Posts: 6
    19.08.2016 at 22:47 #29880

    I don’t think its cache because define(‘DISABLE_CACHE’, true); is in my wp-config file.

    Its really strange that the menus are all messed up too. I have no clue where the current (visible) menu comes from and why when you click on it, a menu pops up!

    Am I just going to have to start over? If so what directories would I completely delete?

    Roman
    Spectator
    Posts: 3147
    19.08.2016 at 23:35 #29881

    make a backup of your current version, remove it and upload and activate the latest theme version. it’s the best solution 😉

    tim rosenthal
    Spectator
    Posts: 6
    20.08.2016 at 02:36 #29882

    95% of the way there! That worked and in the process, I discovered the issue was with one of my plugins (so needless to say, that’s gone).

    So the last problem, why is my menu showing old items?

    Specifically speaking, “Anne’s Quest Bracket Challenge” should not be in the menu and in the Menus section, this page is not listed as being in the menu.

    tim rosenthal
    Spectator
    Posts: 6
    20.08.2016 at 02:38 #29883

    Actually, I’m going to try to set these pages as draft.

    Roman
    Spectator
    Posts: 3147
    20.08.2016 at 08:47 #29886

    any menu item you can modify in the Appearance -> Menus

    tim rosenthal
    Spectator
    Posts: 6
    21.08.2016 at 21:10 #29907

    ok thank you for all your help. Our site is back up and looks 99% of the way we want it.

    When I click on one of the primary menu items, it (the text) almost seems to disappears. Do you know which appearance option can fix that? On a related note, when you’re on a page such as http://annesquest.org/about-us/, how do I get the menu text to be white instead of grey (which appearance option)? I can’t seem to find where these options are and I also don’t see these options in the CSS.

    Denzel Chia
    Moderator
    Posts: 2656
    22.08.2016 at 01:32 #29908

    Hi,

    When I click on one of the primary menu items, it (the text) almost seems to disappears.

    Please use the following in Theme Options -> Custom CSS

    ul.nav-menu li a:focus{
    color:#888888 !important;
    }

    On a related note, when you’re on a page such as http://annesquest.org/about-us/, how do I get the menu text to be white instead of grey

    Please use the following in Theme Options -> Custom CSS

    ul.nav-menu .current-menu-item a {
    color: #fff !important;
    }

    Thank you