In this issue http://drupal.org/node/521328 you suggested "Assign a width to the popup body within your theme layer." My theming skills are not great. Can you give a little more direction? Is it in the tpl.php, the template file, the css?

any guidance is appreciated.
thanks
c

Comments

stieglitz’s picture

Component: User interface » Miscellaneous
Issue tags: +images, +popups

oops

idcm’s picture

oops? oops to what? now I am intrigued.

stieglitz’s picture

sorry I meant to create a new issue but instead replied to this one. I then created the issue regarding an image with popups.

Scheepers de Bruin’s picture

There are two ways to do this:

1) Apply to one specific popup:
[popup id="my-id" ...]
In the theme CSS:
#my-id a.popup-title{ width: 100px}

2) Apply to a group of popups:
[popup class="my-class" ...][popup class="my-class" ...][popup class="my-class" ...]
In the theme CSS:
div.my-class a.popup-title{ width: 100px}

Scheepers de Bruin’s picture

Status: Active » Closed (fixed)
idcm’s picture

thanks!!!

Scheepers de Bruin’s picture

My pleasure