Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • I tried that, but it still loaded the js/css. Perhaps I should have double checked. Thanks for the info.

    I’m going to be using 2.03 because I don’t want to be loading up useless js/css for a site that doesn’t use tabbed widgets. Perhaps it would be beneficial to turn off loading of the js/css when a tabbed widget is not in use.

    You have to add some code to your style sheet for the class to function correctly. Some of it can be found in the default template. (oddly, they misnamed the class “aligncenter” as “centered” in the style sheet)

    img.aligncenter {
    display: block;
    margin-left: auto;
    margin-right: auto;
    }

    img.alignright {
    padding: 4px;
    margin: 0 0 2px 7px;
    display: inline;
    }

    img.alignleft {
    padding: 4px;
    margin: 0 7px 2px 0;
    display: inline;
    }

    .alignright {
    float: right;
    }

    .alignleft {
    float: left
    }

    I guess they forgot about this change when they said it wouldn’t affect templates.

Viewing 3 replies - 1 through 3 (of 3 total)