Support community for TTG plugins and products.
NOTICE
The Turning Gate's Community has moved to a new home, at https://discourse.theturninggate.net.
This forum is now closed, and exists here as a read-only archive.
You are not logged in.
Pages: 1
I cannot get navigation to use the font i want.
I have choosen:
["navigation_items.font_family"] = "'Franklin Gothic Medium', 'Arial Narrow Bold', Arial, sans-serif",
My entire page display Franklin Gothic besides navigation that displays Arial
How can i fix this? (i assume worst case i can edit the custom.css but which control to use to override this?)
Offline
Can you post a link to your site?
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Test site at: ce4.bluehourphotography.net
Offline
The only problem I see is that "Franklin Gothic Bold" doesn't exist on my system, so the page is using Arial instead. That's normal.
Offline
it does however work for my footer and this page
http://ce4.bluehourphotography.net/contact.php
Any clues why navigation is different?
Offline
this is what's showing for the font in the footer as well as in your main text:
font-family: "anivers-sc",sans-serif;
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
If you are having trouble with fonts, you might want to try this:
http://chengyinliu.com/whatfont.html
It will show you what the font-family for the selected text is, as well as what the actual font being displayed it. It works with Google Fonts and Adobe Typekit as well.
Kyle Lucy Photography
kylelucy.com
Offline
Kyle, that is so cool. Thanks for sharing
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
michael,
If you want to apply your custom css to the nav fonts you'll need to get more specific with the selectors.
This page shows you which selectors are controlling typography for each area of the page:
http://ce4.theturninggate.net/docs/doku … y_template
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Offline
Rod and Kyle.
Thanks to you both for sharing info. I'm sure if will help me finalize the site.
a bit strange though as i have no reference to anivers-sc in my code
Offline
Offline
a bit strange though as i have no reference to anivers-sc in my code
Actually, I think you do. Anivers-sc is at Typekit font and you've inserted a script via phplugins that appears to be loading Typekit. The Anivers-sc font reference can be found there.
Rod
Just a user with way too much time on his hands.
www.rodbarbee.com
ttg-tips.com, Backlight 2/3 test site
Offline
Still struggling with font and getting lost
Have added 'Anivers SC' to my typekit and loaded that in phplugins, have changed ALL css selectors to
font-family: 'Anivers SC';
Result is that I simply cannot have navigation to use my fonts for some reasons (and form is broken to):
http://ce4.bluehourphotography.net/contact.php
Appreciate ANY assistance here as this is the last outstanding before going live...
Offline
When you say "form is broken", do you mean that it's not sending? Or are you only referring to the fonts not being applied to the form labels?
Offline
This is being applied to 'body' and to the navigation:
font-family: 'Anivers SC';
... and it's not working.
Elsewhere, where your custom fonts ARE working, you have this:
font-family: "anivers-sc",sans-serif;
Updating the former to the latter effects your font change in all places.
So, to be more abstract and more specific all at once ...
This is what's happening, and it's not working:
body,
p#nav a, #r2d2-menu ul li a, #r2d2-menu ul#nav li span {
font-family: 'Anivers SC';
}
Note that this piece of code doesn't exist anywhere in your source. I'm just putting things together for purposes of explanation.
What would fix your issue, would be to effect these changes:
body,
p#nav a, #r2d2-menu ul li a, #r2d2-menu ul#nav li span {
font-family: "anivers-sc",sans-serif;
}
Offline
a HUGE and sincere thanks - all working as expected now
Offline
Pages: 1