Internet Explorer issue

3 posts by 2 authors in: Forums > CMS Builder
Last Post: February 25, 2009   (RSS)

Re: [Ginslinger] Internet Explorer issue

By aev - February 25, 2009

Hi!

You forgot to close the opening <a> tag:

<a href="<?php echo $upload['urlPath'] ?>" rel="lightbox[gallery]" title="<?php echo $upload['info1'] ?>" <img src="<?php echo

should be:

<a href="<?php echo $upload['urlPath'] ?>" rel="lightbox[gallery]" title="<?php echo $upload['info1'] ?>"><img src="<?php echo

IE doesn't like that, and for once that's ok since it's an actual error.

-aev-

Re: [aev] Internet Explorer issue

Thanks a bunch. Still learning the difference between regular HTML and PHP tags. > took care of the problem.