mmson
Forum Replies Created
-
Forum: Themes and Templates
In reply to: Can I user function.php overwritten some codes on wp-login.php?Any good idea for me?
Forum: Fixing WordPress
In reply to: How could I add a simple subscribe button input email?Thanks for you guys tips.
@jonas Grumby: what plugin is? May you tell me?@kmessinger: seems good but I just want to follow strictly my subscribe look and feel input(for email)+subscribe button
Forum: Themes and Templates
In reply to: UrgentOpsss, sorry for the title for my topic.
Forum: Themes and Templates
In reply to: UrgentYup, I search keyword for ‘pagination’ ,just not match for me and I’m new for wordpress develop, so you know hard to code on my own.
Forum: Themes and Templates
In reply to: How to display one cat's total numbersThank you Chip Bennett
I read your code it seeds to count the total category, but I just want to count one category’s posts, sorry for my title mistake.such as games category, there are 10 posts in the games cat, I want to show the posts total number on my site, is it possible?
Forum: Themes and Templates
In reply to: Menu Hover ColoursTry to read this article, some guys seems have same question on hover effect using cufon
https://galinsimeonov.com/?p=74Forum: Themes and Templates
In reply to: Menu Hover ColoursI search cufon which let user use a non-standard web font family,
Maybe you search some API for this plugin whether it support hover state for the font ??
Forum: Themes and Templates
In reply to: Menu Hover ColoursIf possible, just make all relate elements away from the cufon.
??
Forum: Themes and Templates
In reply to: Menu Hover ColoursIf not done still, try to not use cufon cufon-canvas,
Do you use cufon cufon-canvas for font family, right?Forum: Themes and Templates
In reply to: Menu Hover Colours“li:hover to li a:hover “
Yup you get it and try.
Good luck .
Forum: Themes and Templates
In reply to: Menu Hover Colours#access li:hover > a,
#access ul ul :hover > a {
color: #fff;
background: #8AD4DF;
}
I think you should not use li:hover>a…. but li a:hover…
Which browser do you use the render your page?
I use Google Chrome render your page, the hover state could be white.If you use IE series browsers, the li:hover, and “>” would not be support by IE
Forum: Themes and Templates
In reply to: Menu Hover Colours@chamchom
?? you add addintional info for my post, great.@in3clicks
Yup, move the hover from li to a tag, that would be what you need.Forum: Themes and Templates
In reply to: remove classes from nav_menu itemsYour nav html have different color for each navigation tab?
You use the WP-admin-> Appearance->Menus to create your menu?
If yes, I remember there is a CSS CLASSES for every menu, you could go to WP-admin-> Appearance->Menus ,
notice there is a screen Options top right?
Click in check the CSS CLASSES,
then you could have a input box for every menu drop down element for “CSS CLASSES (OPTIONAL)”, then you could add the color class for each menu.
Such as class purple for About us
Hope it helps.Forum: Themes and Templates
In reply to: Menu Hover ColoursYou style the hove on ul? li via css?
I try on Chrome, the hover is ok, but not in IE because IE do not support :hover for other tags except a.
So, if you want the li:hover or others tag, you could implemented via js $(”).hover(function(){},function(){});
if you want to implement via css you only set hover on a tag.Hope it helps.
Forum: Themes and Templates
In reply to: Parent page and sub pageOooops, addition information for my navigation both use
<?php
wp_nav_menu(array(
‘menu’ => ‘Top_Home’,
‘location’ => ‘Top_Home’,
‘link_before’ => ‘<span>’,
‘link_after’ => ‘</span>’,
‘container’ => ‘ul’,
));
?>
for the main navigation
and as follow code is for the sub pages.
<?php
wp_list_pages(array(
‘child_of’ => get_page_id_by_slug(‘aboutus’),
‘title_li’ => ”,
‘link_before’ => ‘<span>’,
‘link_after’ => ‘</span>’,
));
?>