PLEASE NOTE: These forums are no longer utilized and are provided as an archive for informational purposes only. All support issues will be handled via email using our support ticket system. For more detailed information on this change, please see this blog post.

Wordpress 3.2 upgrade problem

  1. Upgraded today to Wordpress 3.2 and the newest Thesis 1.8.2.

    But now all my forms are missing? They still exist when I want to add them via the shortcode, but they don't show in the overview listing when I want to edit it, and it look like this on the page:

    http://www.renesejling.dk/test/?page_id=115

    Hope you can help.

    Posted 12 years ago on Thursday July 7, 2011 | Permalink
  2. Ok the list of forms are now displaying again... but the forms still looks strange on the website. Please help. Thanks

    Posted 12 years ago on Thursday July 7, 2011 | Permalink
  3. The display problem is because of the custom CSS rules in your theme. Your custom.css file (line 54) sets a 23px height on all list items in the "format_text" container. Since the forms are structured using unordered lists, they're inheriting from this rule and most of the form content is being hidden.

    [css]
    .custom .format_text li {
        background-image: url("http://www.renesejling.dk/test/wp-content/themes/thesis_18/custom/images/bullet2.png");
        background-position: left top;
        background-repeat: no-repeat;
        height: 23px;
        list-style-type: none;
        padding-left: 16px;
    }

    If you remove the height property (along with the left padding and background image), you'll see that the form displays as it should

    screenshot: http://bit.ly/naAQBy

    Posted 12 years ago on Thursday July 7, 2011 | Permalink
  4. Oh lol... my fault then, didn't catch it before upgrading, thanks a lot :)

    Posted 12 years ago on Thursday July 7, 2011 | Permalink
  5. No worries. I'm glad it was something simple. Let us know if you need anything else.

    Posted 12 years ago on Thursday July 7, 2011 | Permalink