Thank you for a great theme.
Just installed gallery 2.3 on my phpnuke 7.5, downloaded and installed Ice theme, and everything looked fine in FF.
But in IE, part of right hand side is cut off (see pic) and frames are not working.
Is this a theme problem, or related to phpnuke embedding?
Do I have to modify the theme when using it in nuked gallery? (I just downloaded and installed it, no mods)
Also, picLens does not work in my embedded gallery. It just opens the piclens wall displaying default (not mine) images
Please help
Ice_IE.jpg
Ice_FF.jpg
Posts: 22892
@right side cut: Could be a css issue. A real url would help. I suspect that IE is a bit narrower due to the scroll bar.
@picLens: does it work standalone?
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 108
Thanks for looking in to it floridave, the url is http://www.immunoportal.com/modules.php?name=gallery2
I'm not good at CSS, so appreciate all help I can get.
Thanks
Posts: 22892
Standalone apears to work properly:
http://www.immunoportal.com/modules/gallery2/main.php?g2_itemId=7050
So I suspect that it is a doc type issue where IE is not as forgiving as FF.
standalone you have:
<!DOCTYPE html PUBLIC "-//W3C//DTD XHTML 1.0 Transitional//EN" "http://www.w3.org/TR/xhtml1/DTD/xhtml1-transitional.dtd">standaloneversus:
<!DOCTYPE HTML PUBLIC "-//W3C//DTD HTML 4.01 Transitional//EN">coming from your CMS.You could try editing the theme to have the same doctype as your CMS.
The joys of different web applications.
it will be a trial and error with fixing this with css as there is no tool for live editing css in IE like there is in FF.
this theme with its nested tables and divs is hard to fix.
Dave
_____________________________________________
Blog & G2 || floridave - Gallery Team
Posts: 108
Hi again,
After editing theme.tpl as you suggested, I got the same problem in standalone. (in FF as well)
So changed theme back to original doctype......
Slideshow and Search works well in standalone, but not embedded. Will ask for help at nukedGallery, but the site seem to be down....
Anyone familiar with ICE theme, and know how to fix this?
Any clues regarding Search and Slideshow when embedded in phpnuke?
Thanx
Posts: 1
Mozambique, I had the same problem as you, and after days i could solve it. I hope my solution helps you.
You have to modify the file general.css in this directory template\name_template\css\
Change this:
/* Wrapping */
.wrapper_full { width:100%; margin:0 auto;}
.wrapper { width:970px; margin:0 auto;}
For this:
/* Wrapping */
.wrapper_full { width:970px; margin:0 auto;}
.wrapper { width:970px; margin:0 auto;}
You only have to change the wrapper_full width. If you use 800 x 600 resolution, then type 740px in both widths.