GeekSpecialties
Forum Replies Created
-
It will be in the css style sheet for your theme.
Usually at the root of your theme.
/wp-content/themes/yourtheme/style.cssAdvanced themes may have additional style sheets, but the above is where you can add new styles to overide the problem ones.
Your exact styles will be different depending on your current menu/theme.
If you use the firebug addon for Firefox you can right click on the offending menu item, select inspect element. It will show you the classes applied to that item and their location.https://dl.dropbox.com/u/41218/wp-current-item-issue-firebug.jpg
The problem is it’s applying the class “current-menu-item” to a menu item that is not the current page. In my case “menu-item-64” (portfolio dropdown in previous posted screenshot).
Oh yeah, and need to add a hover action back on.
.home .sf-menu > li#menu-item-64.current-menu-item:hover, .sf-menu > li.sfHover { background: url("../images/buttons_small.png") no-repeat scroll 0 -166px transparent; } .home .sf-menu > li#menu-item-64.current-menu-item:hover > a, .sf-menu > li.sfHover > a { background: url("../images/buttons_small.png") no-repeat scroll 100% -199px transparent; }
This is what I did to fix the display for now.
The home page adds a class to the body tag named home.
So you can target that menu item while on the home page then just style it as it should be, not as the current-item styles.Mine uses two background images so here is what I changed them to.
.home li#menu-item-64.current-menu-item { background-image: none; } .home .sf-menu > li#menu-item-64.current-menu-item > a { background-image: none; }
Yep, same issue here. In my screenshot I’m on the Home page, Portfolio is a blank url field for a dropdown.
If I look at the generated classes on the Portfolio item class=
menu-item menu-item-type-custom menu-item-object-custom current-menu-item current_page_item menu-item-64
Forum: Plugins
In reply to: [Plugin: Custom widgets] plugin not working for static posts pageherko – thanks so much. I was having the same issue with widgets not showing on static post page and that was the solution.
Forum: Plugins
In reply to: [Plugin: MailChimp Archives] Cannot be installed, Fatal errorFYI – I was having some issues with my site so I deleted the plugin while I was troubleshooting. When I went to activate it I got the ‘Plugin could not be activated because it triggered a fatal error’ message again.
I de-activated the other mailchimp plugin and no change. So I tried de-activating all my plugins, then only activating mailchimp archives plugin. That worked, I then activated the rest of my plugins again and everything is working.
Forum: Plugins
In reply to: [Plugin: MailChimp Archives] Cannot be installed, Fatal errorInstalled the updated plugin and working perfectly.
Thanks.
Forum: Plugins
In reply to: [Plugin: MailChimp Archives] Cannot be installed, Fatal errorGreat, I will wait a couple of days and look for the new version.
Thanks for looking into it.Forum: Plugins
In reply to: [Plugin: MailChimp Archives] Cannot be installed, Fatal errorThis happened to me also.
“Plugin could not be activated because it triggered a fatal error”Still running WP 2.9.1
Arthemia Premium theme
Running on my VPS
PHP Version 5.2.11
Long list of plugins – https://dl.dropbox.com/u/41218/Active-Plugins-Remodel-Crazy.jpgForum: Plugins
In reply to: [Plugin: Register Plus] Can’t change other users’ custom profile fieldsIt seems like it’s something with 2.9.1
I have been using the plugin successfully for about 1 year. I just updated to 2.9.1 and am seeing the same thing. Every time a new user registers it also changes my admins info.
If somebody has an idea to what changed in 2.9.1 that would affect this, would be a great help.
Forum: Plugins
In reply to: [Plugin: NextGEN Gallery] Thumbnails not displaying properly in IE8I’m having the same issue with IE8.
I added this to an IE8 conditional comment..ngg-gallery-thumbnail {width:160px;padding-right:10px;}
Set the width to whatever your gallery thumbnails are plus any padding you have on the image.
Forum: Fixing WordPress
In reply to: iNove Left sidebar.. Need help!I love this theme but needed a left sidebar.
style.css:
1. #main{float:right}
2. #sidebar{float:left}
3. #content{background-repeat:left}img/sidesep.gif
Rotate this image for 180 degrees.Worked perfect, thanks.