had a quick look, menu seems OK to me? what browser are you using? can you post (a link to) a screenshot darkko?
frank (ao dev)
Thread Starter
darkko
(@darkko)
http://postimg.org/image/vbmu3rekx/
Can you notice the difference?
On my screen buttons on upper image seems blurred..
I am using Chrome.
Thanks.
it’s a font issue;
1. the menu comes with this font-definition:
.main-navigation a, .menu-toggle {
font: 700 .87em/1 "HelveticaNeue-Light", "Helvetica Neue Light", "Helvetica Neue", Helvetica, Arial, "Lucida Grande", sans-serif;
}
2. on the demo-site this results in Arial being used (as it a system font on my windows PC)
3. on your site however, helvetica neue-light is available (loaded by ultimate-social-media-icons, see below) and as it is listed first it has priority
@font-face {
font-family: "helveticaneue-light";
font-style: normal;
font-weight: 400;
src: url("/wp-content/plugins/ultimate-social-media-icons/css/fonts/helveticaneue-light.eot?#iefix") format("embedded-opentype"), url("/wp-content/plugins/ultimate-social-media-icons/css/fonts/helveticaneue-light.woff") format("woff"), url("/wp-content/plugins/ultimate-social-media-icons/css/fonts/helveticaneue-light.ttf") format("truetype"), url("/wp-content/plugins/ultimate-social-media-icons/css/fonts/helveticaneue-light.svg#helveticaneue-light") format("svg");
}
solutions:
* add specific CSS to override font-definition for your menu (.main-navigation a)
* don’t use ultimate-social-media-icons
frank
Thread Starter
darkko
(@darkko)
Hi,
could you please point me on how to override font definition.
Is it right way to simply change HelveticaNeue-Light to Arial?
I tried and it works..
Besides that, where did you viewed site main-navigation section without access to site’s style.css?
Thank you!
could you please point me on how to override font definition.
Is it right way to simply change HelveticaNeue-Light to Arial?
I tried and it works..
changing that in the theme’s stylesheet works, but you’ll have to re-apply after every theme update off course.
Besides that, where did you viewed site main-navigation section without access to site’s style.css?
in my browser’s development console, inspecting one of the menu buttons. see e.g. this explanation for Google Chrome (I used Firefox, but roughly same approach).
frank