the article pages when loaded for the first time in IE will be over lapped or the title will be under the subtitle and even the title in the middle of the first paragraph.
(click on the links from the page above to the different articles to see the problem)
All the articles if loaded by IE will have some flaw but one or two. Now nothing happens with Chrome Firefox or Safari as far as i have seen or herd.
And once you refresh the page it will be just fine or navigate away and come back to it.
can anyone see a flaw or know why this can be happening?
note** it has been seen doing this on IE 7 and IE 8
I changed around the coding a bit and came out with the same look and it seams to have solved the problem. I am not sure what was causing it but hopefully it is gone for good.
I do have one last problem though and that is having the “Article” menu to say the highlighted color when navigating to the sub pages. the “Article” page is the parent of all the individual articles. I know I do not have my css setup right to allow this and haven’t found a solution or a anything to explain how to.
You would need to add class=“current” back to the html around the Articles link. There’s no way to target it on certain pages using css (unless you have different style sheets for different pages but that would just get confusing).
If you have access to the html you can add it back yourself, but you’d be stuck if you can only edit the css. If the articles are generated from a database you can still fix this even though the article pages don’t exist as html. You just need to add the class to the html on the “template” page that the articles use.
since the child pages are using the section class could i not just add the section class to the css like the current is?
Yes, it looks like you could style the section class so it is “highlighted.” I didn’t even notice that class before, but they seem to have planned for just such a need and added the class automatically, even if nothing is applied yet. How convenient.
i have a style done for the class “section” i have also tried to do it like the current and it didn’t even show up so i changed it to the one that shows up in firebug but it is put under the #menu a so it is overridden.
This is the current class that i basically duplicated and swapped current with section and it gave me nothing.
Hi, the reason is because the #menu a{} rule has more specificity then the a.section{} rule
Make it #menu a.section{}
If that isn’t working , then see if anythings overriding it.
I ntoice in your first snippet you post there is two brackets at the beginning snippet of it. Make sure your CSS is valid also :). That can cause rules to be ignored.