CSS positioning issue on a WP page
-
I created a navigation object using only css and html (and made sure the html was all legal per WP rules).
Unfortunately, there is something about the CSS is displaying it incorrectly in WordPress.
It does however display correctly on my pc. I tested it with multiple browsers.
It also display correctly on JsFiddle.
( see http://jsfiddle.net/alibey/e6tbrmeL/1/ )
Can anyone suggest how to fix the CSS so that this object is positioned correctly on a WP page?
Thanks!
The blog I need help with is: (visible only to logged in users)
-
Are you wanting that large dark band with the post/page title in it?
The position: absolute in #Trunk_container is what is causing the table to hide behind the title and the sharing buttons to hide behind the table. Position: absolute will break all relationships to other elements in the web page.
Change position: absolute to position: relative and the table will then drop down below the title and the sharing buttons will come out of hiding. See what you think with that change.
-
-
- The topic ‘CSS positioning issue on a WP page’ is closed to new replies.