Tagged: x
-
AuthorPosts
-
April 2, 2016 at 6:28 pm #864127
Hello,
I have tried doing the following: <i class=”x-icon x-icon-home”></i>
But it doesn’t seem to work. When I inspect the page in chrome it shows that the size is 0x0. I have tried changing the size to fa-lg and still not working.
In Addition, I have tried to remove the menu borders but that didn’t work either (custom>CSS):
.x-navbar {
border-bottom: none;
box-shadow: none;
}I must be doing something wrong but I wanted to check before I play with the CSS files.
I do have the child theme installed (Could that be the issue?)April 3, 2016 at 3:18 am #864481Hey there,
Would you mind providing us with login credentials so we can take a closer look? To do this, you can make a post with the following info:
– Link to your site
– WordPress Admin username / password
– FTP credentialsDon’t forget to select Set as private reply. This ensures your information is only visible to our staff.
Thanks.
April 3, 2016 at 10:01 am #864717This reply has been marked as private.April 3, 2016 at 10:13 pm #865292Hello There,
Thanks for providing the access to your site.
To remove the border in your menu items, please add the following css code in the customizer, Appearance > Customize > Custom > CSS
.x-navbar .desktop .x-nav>li>a { border: none !important; }
When you add an icon code
<i class="x-icon x-icon-home"></i>
in your menu items, it will not work just yet. Please enable first the Legacy font classes by going to Settings > Cornerstone or if you are using the latest version of Cornerstone, please go to Cornerstone > Settings.Temporarily, you can please add the following css code in your child theme’s style.css
.menu-item .x-icon-home:before { content:"\f015"; }
Hope this helps.
April 4, 2016 at 1:55 pm #866406Perfect… The menu borders are removed… Thank you.
How can I align it to the left?Thank you
April 4, 2016 at 10:23 pm #867000Hello,
– Cornerstone > Settings doesn’t have the option to enable Legacy font classes. How can I enable it to be able to use other icons besides the home icon?
– Is there a way to align the entire menu to the left?
Thank you in Advance.
April 5, 2016 at 12:24 am #867105Hi There,
With the latest X|Theme, legacy font classes is enable by default. See your menu blog item, I added a home icon there.
Please update your X|Theme to the latest version as you already have the latest Cornerstone to avoid compatibility issue.
You can add this under Custom > CSS in the Customizer to float the menu on left side.
.masthead-inline .desktop .x-nav { float: left; }
Hope it helps, Cheers!
April 5, 2016 at 9:09 pm #868471Thank you.. the float works fine…
I have updated the theme.
Still the only icon that works is the home icon!!!I tried changing the icon from the menu section, but it’s not working. This is what I have now: <i class=”x-icon x-icon-bullhorn”></i> Blog
April 6, 2016 at 6:41 am #869046Hi there,
Please check this link to learn how to add icons to your page :
https://theme.co/changelog/#theme-4-0-0
Hope it helps.
April 7, 2016 at 12:55 pm #871571Would you please give me an example. i.e. how do you add this icon to a menu link: Unicode: f075 <i class=”fa fa-comment”></i>
April 8, 2016 at 12:39 am #872352Hi There,
Simple replace the class prefix fa with x-icon
<i class="x-icon x-icon-comment"></i>
Hope it helps, Cheers!
April 8, 2016 at 10:19 am #872957Thanks Friech… I have added it but still not working. I’m not really sure what am I doing wrong. Check out the screen shot.
April 9, 2016 at 12:15 am #873747Hi There,
You did great, it is just the issue becoming weird. The latest version of X/Cornerstone should give you the icon with just the class, and this is true when I first check your site (see my reply above).
But now it rely on the
data-x-icon
attribute.<i class="x-icon x-icon-comment" data-x-icon=""></i>
Please delete the Cornerstone via FTP and re-install it, it should be updated to 1.2.3 at the same time.
Thanks.
April 9, 2016 at 4:27 pm #874501Excellent. Thank you for all of your help..
April 10, 2016 at 3:30 am #874957You’re welcome. Glad we could help. 🙂
-
AuthorPosts