Page 4 of 26 FirstFirst ... 2345614 ... LastLast
Results 31 to 40 of 258
  1. #31
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Jquery Lightbox [Support thread]

    Anyway let me know what you find out about this. Like I said You can see with jqzoom off and then it is out of line with the drop shadow. I have tried doing what you suggested to gsdcypher which didn't help get it centered below the image. Thank you again. You should have my ftp and admin information since I sent it back to you for the xcart install.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  2. #32
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Jquery Lightbox [Support thread]

    hey yellow1912,

    yeah.... i follow you. this is what i did. don't know if it is the right way to do it, but it seems to work...

    Code:
    ?>
    <?php require(DIR_WS_MODULES . zen_get_module_directory(FILENAME_MAIN_PRODUCT_IMAGE)); ?> 
    <div id="productMainImage" class="centeredContent back">
    <script language="javascript" type="text/javascript"><!--
    document.write('<a href="<?= $products_image_large;?>" id="jqzoomMain"<?php if (JQLIGHTBOX_STATUS == 'true') echo ' class="jqlightbox"';?>><?= zen_image($products_image_medium, addslashes($products_name), MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT);?></a>');
    //--></script>
    <noscript>
    <?php
      echo '<a href="' . zen_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $_GET['products_id']) . '" target="_blank">' . zen_image($products_image_medium, $products_name, MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT) . '<br /><span class="imgLink">' . TEXT_CLICK_TO_ENLARGE . '</span></a>';
    ?>
    </noscript>
    </div>
    <div class="imgLink"><a href="<?php echo $products_image_large;?>"<?php if (JQLIGHTBOX_STATUS == 'true') echo ' class="jqlightbox"';?>><?php echo TEXT_CLICK_TO_ENLARGE;?></a></div>
    You can see here: http://tinyurl.com/b48rh7

    thanks!


  3. #33
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Jquery Lightbox [Support thread]

    That will work too, but if you turn off javascript, you will see you have 2 "larger image" links. You can remove the one from the noscript section.
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  4. #34
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Jquery Lightbox [Support thread]

    done. better?

    ya know if i disable javascript i lose my main product image...

    is there a way around that?

  5. #35
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Jquery Lightbox [Support thread]

    hey yellow1912, while were talking css... i have the tell a friend and the write a review buttons stacked on top of each other. i would like to "compress the page." i've tried a couple of things, but haven't been able to get those to buttons aligned properly side by side. any ideas?

    thanks.

  6. #36
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Jquery Lightbox [Support thread]

    Yes, the part between the no scrip tag is responsible for displaying the image and the text when no js is available. What you should have done, is to remove only the code responsible for displaying the text, not everything. for your other question, try #productTellFriendLink, #productReviewLink{float:left} Or you can float 1 left, and the other to the right.
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

  7. #37
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Jquery Lightbox [Support thread]

    ok fixed the script off image thingy.

    but the buttons just won't line up correctly. maybe tomorrow...

    thanks for all of the help!

  8. #38
    Join Date
    Feb 2007
    Posts
    819
    Plugin Contributions
    0

    Default Re: Jquery Lightbox [Support thread]

    side note... i had fixed it where the lightbox did not show duplicate images, but moving the code in red out of the div caused the double main image to come back... any other way to do that???

    ?>
    <?php require(DIR_WS_MODULES . zen_get_module_directory(FILENAME_MAIN_PRODUCT_IMAGE)); ?>
    <div id="productMainImage" class="centeredContent back">
    <script language="javascript" type="text/javascript"><!--
    document.write('<a href="<?= $products_image_large;?>" id="jqzoomMain"<?php if (JQLIGHTBOX_STATUS == 'true') echo ' class="jqlightbox"';?>><?= zen_image($products_image_medium, addslashes($products_name), MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT);?></a>');
    //--></script>
    <noscript>
    <?php
    echo '<a href="' . zen_href_link(FILENAME_POPUP_IMAGE, 'pID=' . $_GET['products_id']) . '" target="_blank">' . zen_image($products_image_medium, $products_name, MEDIUM_IMAGE_WIDTH, MEDIUM_IMAGE_HEIGHT);
    ?>
    </noscript>
    </div>
    <div class="imgLink"><a href="<?php echo $products_image_large;?>"<?php if (JQLIGHTBOX_STATUS == 'true') echo ' class="jqlightbox"';?>><?php echo TEXT_CLICK_TO_ENLARGE;?></a></div>
    Last edited by gsdcypher; 15 Mar 2009 at 07:07 AM.

  9. #39
    Join Date
    Jul 2007
    Posts
    2,169
    Plugin Contributions
    16

    Default Re: Jquery Lightbox [Support thread]

    Yellow I have the text looking the way I want it, but still when I leave jqzoom on the text goes up around the right top and bottom. This stumps me. It does not happen when it is off and I just use the jqlightbox. Now if I switch jqlightbox off and just use the jqzoom I still get the same thing with the text. Don't know. For right now I will just use the jqlightbox until we or I can find out why. Thanks again.
    Is your site Upgraded to the current version 1.5.4 Yet?
    zencart-upgrades-website-installation

  10. #40
    Join Date
    Oct 2006
    Posts
    5,477
    Plugin Contributions
    11

    Default Re: Jquery Lightbox [Support thread]

    I get what you mean by the double main image now, so let me explain why it happens first:
    The script look for any image wrapped by a link which has a class "jqlightbox"

    So if you separate the "larger image" text and the main image, you will have 2 jqlightbox links instead of 1. What you can do in this case is:
    remove the link wrapping around the main image, leaving only the link around the text
    I no longer provide installation support on forum for all my modules. However, if there are real bugs with the modules please feel free to contact me

 

 
Page 4 of 26 FirstFirst ... 2345614 ... LastLast

Similar Threads

  1. Zen Lightbox addon [Support Thread]
    By Alex Clarke in forum All Other Contributions/Addons
    Replies: 3726
    Last Post: 2 Feb 2026, 06:28 PM
  2. v153 jQuery Scrolling Sideboxes [Support Thread]
    By lat9 in forum Addon Sideboxes
    Replies: 79
    Last Post: 15 Apr 2024, 10:20 PM
  3. v152 Down for Maintenance jQuery Countdown (Support Thread)
    By rbarbour in forum All Other Contributions/Addons
    Replies: 5
    Last Post: 27 Nov 2015, 03:04 PM
  4. v152 jQuery Banners (Support Thread)
    By rbarbour in forum All Other Contributions/Addons
    Replies: 6
    Last Post: 30 Sep 2015, 02:07 AM
  5. Jquery Zoom [Support thread]
    By yellow1912 in forum All Other Contributions/Addons
    Replies: 384
    Last Post: 11 Dec 2013, 02:41 AM

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
disjunctive-egg