Hi,
This might seem like a silly question but I don't know where to change the width of the table in which pictures show one by one. I was able to change this in the header and footer on the first two sites, where you have albums and all pictures in the album, but somehow can't firnd where to change it so that the page with the chosen picture has table with 80% widht vs. 100%.
Thanks
Posts: 3474
Hi... in v.1.31 (latest full release)
Check view_photo.php:
Line 284: <table border=0 width=<?=$mainWidth?> cellpadding=0 cellspacing=0>
Line 370: <table border=0 width=<?=$mainWidth?> cellpadding=0 cellspacing=0>
Line 436: <table border=0 width=<?=$mainWidth?> cellpadding=0 cellspacing=0>
Line 494: <table border=0 width=<?=$mainWidth?> cellpadding=0 cellspacing=0>
All of those should be fixable by changing $mainWidth:
Line 126: $mainWidth = "100%";
That should do it.
-Beckett (beck@beckettmw.com)
Posts: 140
Great,
Thanks a lot :smile: