
Joshua Tallent
-
Total activity18
-
Last activity
-
Member since
-
Following0 users
-
Followed by0 users
-
Votes0
-
Subscriptions1
Activity overview
Latest activity by Joshua Tallent-
Joshua Tallent commented,
Did you try doing a hard refresh of the article in your browser (not the editing page, the customer-facing page)? Hold down CTRL and press F5. You might also use the Code Inspector to make sure th...
-
Joshua Tallent commented,
Can you load a screenshot of what you did?
-
Joshua Tallent commented,
Eric, After you load the image with the uploader in the article, click on the Source Code button on the right side of the editor. In the Code pop-up, add the class name to the image tag, as you se...
-
Joshua Tallent commented,
Eric, Do you have the class name on the image you want to expand? <img class="fancybox" src="image.png" alt="alt text">
-
Joshua Tallent commented,
You have to have some sort of delineation on the images to assign the styling. If you don't have something specific to define which images are which then there's no way to do what you want. Sorry!
-
Joshua Tallent commented,
Chris, you can make all images zoomable by changing this line in the JS: $('.article-body img.fancybox').on('click', function() { to this $('.article-body img').on('click', function() { (remove the...
-
Joshua Tallent commented,
Chris, just follow the directions above to set up the JS and use the class name you define in the images.
-
Joshua Tallent commented,
Chris, if you set it up to only apply to titles that have the class name, then it will not be applied to anything else. I'm sure you could figure out a way in the JS to set exclusions, but using th...
-
Joshua Tallent commented,
I am not sure that the Help Classes Hidden function you have there at the end is written properly. Try moving the Images function above that and seeing if that helps. If so, then the Help Classes f...
-
Joshua Tallent commented,
Marco, be sure to place the script addition to the bottom of the file BEFORE the closing "});"