Hi,
I use this shortcode to display a poll on a WP page:
[php]
[gravityform action="polls" id="25" mode="poll" style="red" show_results_link="true" display_results="true" percentages="true" counts="true"]
All looks good until I hit the "Show results" button. When the page reloads the whole page is suddenly scrambled with content displaced all over the page. I've found it's due to a missing </div>
. If I place one after the shortcode the page looks better:
[php]
[gravityform action="polls" id="25" mode="poll" style="red" show_results_link="true" display_results="true" percentages="true" counts="true"]</div>
But now the side menu on the page disappears! I'm using a theme (Modernize) on top of WP. This is probably the problem. But what to do?
I also have problem with the GF widget that uses the unordered list ( <ul>
) code from the theme's css, which looks bad.
Regards
Johan