Uniform Width / text

caferoyalbooks / 2012-12-21 08:35:26   

The over and over plugin. Uniform width is great, is there a way of making the same width apply to the any text in the same exhibit?

arsondpi / 2012-12-21 11:11:24   

sure - go to Admin/Assets/format.over_and_over.php and towards the end of the plugin there's the css part of the format...

  1. if ($this->uniform_width != 0) $css .= "#img-container .captioning p { width: " . $this->uniform_width . "px; }";

make it into:

  1. if ($this->uniform_width != 0) $css .= "#img-container .captioning p, #exhibit .container p { width: " . $this->uniform_width . "px; }";
caferoyalbooks / 2012-12-21 13:34:07   

great thank you.

This thread has been closed, thank you.