Loading...
 
Features / Usability

Features / Usability


Re: Trouble with IMG and Fancy Table plugins after upgrading from 9.9 to 12.9

posts: 4656 Japan

I don't know why, but the imgbox div is getting inline CSS that is making the box containing the image really small - just 2px by 3px.

You can add this CSS to the custom CSS section of the Look and Feel admin page:

.imgbox {
width: auto !important;
height: auto !important;
}

And this will cause the imgbox to be full width and tall enough to contain the image, so there's no text overflowing it. I don't know if this is how imgbox is supposed to look, but I think it's probably acceptable. If you'd prefer the box to not be full page width, then try adding

display: table;

or

display: inline-block;

as one of the properties of .imgbox, along with the height and width rules.

I haven't looked at the Fancy Table problem yet.

-- Gary

There are no comments at this time.