I see the custom typography change menu for ‘Widgets title font’
My problem is I want the text in the widget itself to be the one labelled “Helvetica Neue” near the top of the drop down menu to match the the of the site – is this possible?
Something maybe to replace the ?? here for the custom CSS?
.widget_text a {
?????????????;
}
.widget {
font-family: ‘Helvetica Neue’;
font-size: XXpx;
}
if that doesn’t work, try .wigdet_text or .widget_text a or .widget p or .widget_text p and see which one works best for your purposes!
if you find you need 2, you can do
.widget, .widget-text {
CODE
}
Thanks Otis – worked perfectly first time!
If it’s possible I would also like to change the text font in the following places also to also font-family: ‘Helvetica Neue’;
1. Social Counter widget (the numbers and Fans/Followers text)
2. Breadrumbs
3. Category, author, date tags
4. Search query (including ‘If you’re not happy with the results, please do another search’)
5. Pagination numbers/text at foot of page
– Basically I don’t want the default font anywhere, but do want ‘Helvetica Neue’ family.
Thanks for your help.
-
This reply was modified 12 years by
london789.
Hi,
1.
.widget_social span {
font-family: 'Helvetica Neue';
}
2.
.entry-crumbs a {
font-family: 'Helvetica Neue';
}
3.
.meta-info {
font-family: 'Helvetica Neue';
}
4.
.td_search_subtitle,
.td-widget-search-input {
font-family: 'Helvetica Neue';
}
5.
.page-nav {
font-family: 'Helvetica Neue';
}
6.
.next-prev div,
.next-prev a {
font-family: 'Helvetica Neue';
}
I’m not sure if all will work.
Thanks for the message!
-
This reply was modified 12 years by
Marius.
Thanks ! – it all worked fine except 3.’.meta-info’ didn’t change:
a. the category tags
b. the search button
c. the footer text
d. the tag text
I may be wrong but I don’t think these have changed either:
e. the image caption
f. the final breadcrumb text (e.g. article title in breadcrumb line)
Would be great if this was possible, thanks for your help. Fantastic.
Hi,
.entry-category a,
.header-search-wrap .dropdown-menu .btn,
.td-sub-footer-copy,
.td-tags a,
.wp-caption-text,
.entry-crumbs span {
font-family: 'Helvetica Neue';
}
If you want other changes you can easily inspect the elements using Inspector from Chrome or Firebug from Firefox and use the selector: http://screencast.com/t/x8LWxXw55EYg
Thanks!