I'm working on developing a plugin and I'm running into some issues with the layout of the admin pages.
My problem is that I have tabs built into the page and the content of the tabs are overlaying the wpfooter content. When I scroll down, the black bar to the left goes away as I scroll. To me, it seems as though something is ignoring the length of the tab content when the window is drawn.
The tabs are created using radio buttons CSS to check whether or not each button is checked.
I followed the structure of:
<?php
PHP code here
?>
<div class="wrap">
Admin page content within tabs
</div>
I've looked at the code of some other plugins and I can't seem to figure out what I'm doing wrong. Are there any special rules on the kind of CSS which can be used within the WP-Admin pages?
Any thoughts or suggestions would be great.