That’s some awesome feedback that I never expected. I have had two forums and several pc user’s take a look at most of the pages and never once have I heard that comment.
That said - what browser are you using?
My Google Chrome tester said she was seeing the green border but did not mention your observation. Perhaps, if she did she may have thought that behavior was coded in?. I really wish I had my own pc to test on but I do knot, pun intended.
If you prefer - and have the time - drop me an email from the site and we can go from there.
Ok! I just took a look at the menu myself and I do see what you are talking about. Great catch because I never noticed that. I’ll loading your code and will report back.
@ronpat
I changed .primary-nav a: hover {} from .no-touch .primary-nav a: hover {} and did not reflect this change in home.css so this is my error. I have several css stylesheets; home.css styles the home page only: majorStyle.css styles all the major pages (the main menu item pages); and minorStyle.css stylesheet which styles the sub-menu pages. Confusing, I know, but it seems to work generally well.
That said, I have added your changes to the majorStyle.css file and if you view a non-home.page menu, you should see that the green border does not appear. For instance, if you go to the Projects page and open its menu you should see that the green border does not appear on hover. The Projects page style sheet is majorStyle.css.
I have added your code to home.css and the menu jitter is definitely gone from that page. But, for some reason, the code does not work in the majorStyle.css file. Will get back to this tomorrow as it is late here.
Thanks again for your help. I sincerely appreciate it.
Same issues. Apply {border:1px solid transparent} to
majorStyle.css (line 490)
.primary-nav a {border: 1px solid transparent;}
and
minorStyle.css (line 496)
.primary-nav a {border: 1px solid transparent;}
At this moment, those styles are missing.
They both work for me when I add them with FireBug.
Which browser do you use? The developer’s tools within your browser (or in my case using a plug-in dev tool) can be quite helpful for tracking down troubles like this and more
Ok, I’ve spent quite a bit of time on this issue and all I have to show is that pages styled with the minorStyle.css work with your code. The home.page which is styled with home.css works as well sans menu jitters. The major pages - styled with majorStyles.css - still has the menu jitters even with your code.
I have gone through the majorStyles.css nav code several times comparing it to the same style rules in minorStyles.css and thought they were mirror-images of each other, but reality proves me wrong. I must be overlooking something, but not certain what that may be.
As far as browser plug-ins go, I use none. I have the latest FF on my desktop but have never really been comfortable with it. I also probaby have Firebug installed in it as well. I will look into using it more often.
There is absolutely NO REASON for you to apologize for anything. I have learned quite a bit about all of this, so it really works out in my favor. No problem there at all. I am indebted to you for your help.
Here is a grab of that style from majorStyle.css as it is now:
{border-color: 1px solid transparent} as shown in the screen capture is invalid and should not be doing anything. If it is working, it is because the browser is very forgiving.
The correct syntax should be: {border: 1px solid transparent}
The idea is to apply a complete border to the <a> and modify just the color/s of that border through the states of :hover, :active, :visited, etc, as desired.
Once that initial border with width and style have been established on the <a>,
It’s up to you whether to change just the color using a:hover {border-color: red}
or repeat the full shortcut, a:hover {border:1px solid red}. Coder’s choice.
You have been exceptionally patient with me: border-color: was the whole problem!
To be honest with you I knew that was incorrect, but could not ‘see’ what I was looking at much less what I was coding. I’ve used border: countless times within these pages so I have absolutely no excuse for my ignorance.
That said - where do I send the pizza?
Thanks for your incredible help and the link as well.