Tagged: x
-
AuthorPosts
-
March 31, 2016 at 2:26 pm #861307
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?
March 31, 2016 at 10:30 pm #861898Hello 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.
April 1, 2016 at 1:17 pm #862894Yes, 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.
April 2, 2016 at 1:12 am #863515Hello 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"; }
Hope this helps.
April 8, 2016 at 4:28 pm #873347Thank you. This fixed it but on the Media tab I now have two icons?
April 9, 2016 at 4:01 am #873910Hello 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.
-
AuthorPosts