Navigation
This is archived content. Visit our new forum.

Tagged: 

  • Author
    Posts
  • #861307

    Michael T
    Participant

    I am using a child theme, I updated X and it was like all the CSS disappeared. Now I am completely locked out of the site with some error that is apparently about Cornerstone and the X shortcodes plugin folder? How is this an update process? I update and the site goes down and locks me out?

    I’ve disabled all plugins and nothing. When I switch from child theme to X theme it sort of comes back but without menus?

    http://www.DustyWatson.com

    #861898

    Prasant Rai
    Moderator

    Hello Michael,

    Thanks for writing in!

    I can see navigation menus on your website on my end. Would you mind confirming again along with other problems you might be facing? Please share login details of website in a private reply.

    Thanks.

    #862894

    Michael T
    Participant

    Yes, there are navigation menus but the icons that used to be next to them are now just boxes.

    Just discovered this is occurring in Chrome. IE does not have the boxes next to the menu items. Firefox has some box with text in it.

    I may not have had icons at all and these boxes just started showing up with update.

    #863515

    Rue Nel
    Moderator

    Hello There,

    Upon checking your child theme’s style.css, there is a custom code that adds an arrow icon in your menu items. It is not displaying because the code is missing the font family. If you do not need the icon and you can simply remove this block of code from your child theme’s style.css file:

    .x-navbar .x-nav li > a:after {
      content: "\f0ab";
    }

    If ever you want to display the icon, you can update the code and use this instead:

    .x-navbar .x-nav li > a:after {
      content: "\f0ab";
      font-family: "fontawesome";
    }

    http://prntscr.com/an3gn7

    Hope this helps.

    #873347

    Michael T
    Participant

    Thank you. This fixed it but on the Media tab I now have two icons?

    #873910

    Rue Nel
    Moderator

    Hello Again,

    The media tab has a sub menu and that is not covered in the code we gave you. You can just simply add this code as well.

    .x-navbar .desktop .x-nav li>a>span:after {
      display: none;
    }

    The code will remove the arrow icon. You will no longer have an indicator that the menu item has a sub menu. If ever you want to display the indicator and would like to remove the motorcycle icon instead, you can simply replace the code above and use this;

    .x-navbar .x-nav li.menu-item-has-children > a:after {
      display: none;
    }

    Hope this helps. Kindly let us know.