implenton
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Active theme is affecting the font in post's editor?Hello jtbuzz,
indeed. It is a choice by the theme developer(s). Of course, the editor’s typeface might be altered by a plugin as well.
Glad I could help.
Forum: Themes and Templates
In reply to: Adding a custom class to a menu's list itemHello jonathas.duarte,
In case you want to add the
navTreeItemclass to allli‘s you can use thepage_css_classfilter. https://developer.ww.wp.xz.cn/reference/hooks/page_css_class/An example implementation would be this:
function menu_css_class($css_classes){ $css_classes[] = 'navTreeItem'; return $css_classes; } add_filter("page_css_class", "menu_css_class", 10);You can take a look at thi post a well: https://wpquicktips.wordpress.com/2010/02/04/custom-css-class-for-your-menu-items/
I hope this helps.
Forum: Themes and Templates
In reply to: Active theme is affecting the font in post's editor?Hello jtbuzz,
your thinking is correct. If your active theme does not change the default typeface for the WordPress editor, then the typeface you should see it Georgia.
When you activate a theme, that theme might load a different typeface in the editor.
The implementation varies by theme. In some cases, the typeface you see in the editor will match the typeface in your front-end, in other cases, they choose to use the default typeface used by WordPress.
Forum: Themes and Templates
In reply to: Why Are Inactive Theme Updates Displayed?Hello quantock,
you can have as many themes installed, but you can have only one theme active.
Installed and not active themes are themes you have disponible to activate. A theme can be activated only after you install it.
WordPress is tracking by default all installed themes for changes, it does not matter if the theme is active or inactive.
An update for a theme might be a very small change or a bigger one. Every WordPress theme has a changelog. The changelos is where they list the changes. For example here are the changes that were made for the Twenty Fifteen theme https://codex.ww.wp.xz.cn/Twenty_Fifteen_Theme_Changelog.
It is always a good idea to make the updates for all the installed themes. They might contain security updates.
I hope this answers your questions.
Forum: Themes and Templates
In reply to: How to align a nav with logo?Hello @alex400,
one solution for this would be to insert this at the end of your style.css file:
#topnav { margin-top: -35px; }It is going to result in this: http://s33.postimg.org/u84ab5q0u/Screenshot_2016_06_10_20_40_24.jpg
I hope this helps.
Forum: Themes and Templates
In reply to: Custom login logo to left of login fieldsHello @tmckee,
are you refering to the default WordPress admin login page? The one you can see on yoursite/wp-login.php or do you have a custom login page that you use for login purpose?
In case you are referring to the default WordPress login page there are actions and filter provided for that. You can check them out here: https://codex.ww.wp.xz.cn/Customizing_the_Login_Form#Styling_Your_Login.
If you are struggling implementing a solution for your site following the guide provided in the documentation, then it would be useful if you would provided your website URL.
I hope this hint helps you in a way.
Forum: Themes and Templates
In reply to: what theme is this?Hello @trufdor,
If you visit this page http://selarl-cabinet-dentaire-saint-guillaume-saint-brieuc.chirurgiens-dentistes.fr/Les-implants-Rubrique-7.aspx, you can see that the URL has the .aspx extension, that means that they are not using PHP to render their page.
WordPress uses PHP and not .NET, hence they are not using any theme.
I hope it answers your question.