Hi tekkitlx,
scratch the above, I found the issue!
Your theme is using a .clear class, which is normally not a problem. What IS the problem is that the theme is applying the .clear class in a VERY bad way.
Example:
Your header has a clear class applied directly, but this is very poor code. The class should be a new div after the header.
WRONG
<header id="masthead" class="site-header clear"></header>
RIGHT
<header id="masthead" class="site-header"></header>
<div class = "clear"></div>
Your #content div does the same thing. This is very poor coding because, well, it causing issues like the one we now face.
SOLUTION:
The best solution would be to fix your template files like above. This way, not only will it be compatible with HD Quiz, but it will also work with any other plugin as well. However, I understand that you may not be a coder, and that this may be an issue for you.
However, you can edit HD Quiz CSS to fix this for you by editing style.css location in /wp-content/plugins/hd-quiz/includes/css/hdq_style.css
On line 267, change
.clear {
clear: both;
display: block;
font-size: 0;
height: 0;
line-height: 0;
width: 100%;
}
to
.clear {
clear: both;
}
and your problem will be solved. Just note that you will need to do this each and every time you update HD Quiz.
Please let me know if you have any trouble making this change. I can send you a customized version with the fix already done.