• Gear
  • Shots
  • Photo Craft
  • Video
  • Wide Angle
  • Support
  • New Stuff
  • More
Support SmugMug Customization New - JFriend HTML5 Slideshow beta release!

FAQtoid

Ever wanted to create an Avatar? Creating an Avatar!

Searching Dgrin with Google Searching with Google

Dgrin Challenges

Congratulations to the Winner of DSS #128 (Sunrise or Sunset), ShootingStar.

The next Dgrin Challenge DSS #129 (Silhouette Revisited ) is open for entries through May 27th, 2013 at 8:00pm PDT.

As always, we look forward to your participation but please do take a moment to read through the rules before posting your entry.

Past DSS Challenge Winners, DSS Challenge Rules, and other important DSS Challenge information is here.

Need some help with Accessories?

Tutorials

Ever find yourself wondering just how someone managed to create an image using different effects?

Here are three simple tutorials we hope will encourage you to try something new.

The Hot Seat

A lifelong interest in landscape photography has led Eyal Oren to make a study of his adopted hometown of Marblehead, MA. As you can see, his dedication is paying off!

Africa!

Dgrinners Harryb, Pathfinder, and others joined Andy Williams and Marc Muench on Safari in East Africa recently. Here are some awesome threads to check out!

 
Thread Tools Display Modes
Page 140  of  179
Old Jun-11-2012, 01:58 PM
#2781
jfriend is offline jfriend OP
Scripting dude-volunteer
Quote:
Originally Posted by grosloulou View Post
oups, all my pages are now full screen with bio box in owner view.
perhaps bio boxtop,... remain,... ???

isn't it easier i give you my password ?

best regards
To hide the biobox on those other pages, add the CSS shown in green:

Code:
/* galleries find bio pages */
/* .homepage #bioBox,*/
.homepage #categoriesBox,
.homepage #communitiesBox,
.homepage #datesBox,
.homepage #featuredBox,
.homepage #ffBox,
.homepage #galleriesBox,
.homepage #keywordsBox,
.homepage #mapBox,
.homepage #popularPhotos,
.galleries #bioBox,
.recent #bioBox,
.find #bioBox,
.homepage #recentPhotosBox {
display: none;}
I don't want your password. I don't fix/customize people's sites for them. I help you figure out how to fix/customize your own site.

The biobox is supposed to be full screen. That prepares it for the slideshow.

Can you please add a link to your site to your dgrin signture so it's in every post you make. As it is now, I have to go hunting for your site link every time you ask a question in this thread.
__________________
--John
HomepagePopular
JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
Old Jun-12-2012, 06:11 AM
#2782
brandofamily is offline brandofamily
Just a Guy with a Camera
brandofamily's Avatar
Any ideas why the clickURL works here:
http://www.brandolinoimaging.com/gallery/1595381
but not here:
http://www.brandolinoimaging.com
__________________
Anthony Brandolino; Freelance Photographer • www.brandolinoimaging.com
I also attend to these fine sites:
www.onbroadwaydancers.comwww.r2rcoalcity.orgwww.tinleyparkfrankfortrotary.comwww.smalltowntheatrics.com
Use this code:8jDMwxj6yp4f2 to save on a subscription to Smugmug
Old Jun-12-2012, 12:46 PM
#2783
jfriend is offline jfriend OP
Scripting dude-volunteer
Quote:
Originally Posted by brandofamily View Post
Any ideas why the clickURL works here:
http://www.brandolinoimaging.com/gallery/1595381
but not here:
http://www.brandolinoimaging.com
I don't know for sure, but I would guess it's because you're using a giant negative margin to position the slideshow upwards which makes it overlap with other objects and perhaps it's not on top of those objects.

I pretty much never use negative margins because they cause object overlap which can lead to problems like this and can lead to browser compatibility issues. I prefer using float with container objects to get objects positioned without overlap and without negative margins.
__________________
--John
HomepagePopular
JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
Old Jun-12-2012, 12:59 PM
#2784
grosloulou is offline grosloulou
Major grins
hallo John,
I finally asked help to smugmug support and i have now a nice slideshow on :
http://labrophotography.smugmug.com/
starting from Richw tuto to have a header and a nav bar... I have found very complex to make your slideshow work.
If I can say, I think that your tuto should be updated to take this case into account.


Because recent and search pages are now turned into stretchy mode by JF code, i now try to have galery page stretchy to like moonriver http://www.moonriverphotography.com/Galleries
see post :
http://www.dgrin.com/showthread.php?t=221995

best regards
marc
Old Jun-12-2012, 02:35 PM
#2785
brandofamily is offline brandofamily
Just a Guy with a Camera
brandofamily's Avatar
Quote:
Originally Posted by jfriend View Post
I don't know for sure, but I would guess it's because you're using a giant negative margin to position the slideshow upwards which makes it overlap with other objects and perhaps it's not on top of those objects.

I pretty much never use negative margins because they cause object overlap which can lead to problems like this and can lead to browser compatibility issues. I prefer using float with container objects to get objects positioned without overlap and without negative margins.
Thanks for the input. Would you mind giving me a few pointer on positioning the homepage elements w/o using negative margins?
__________________
Anthony Brandolino; Freelance Photographer • www.brandolinoimaging.com
I also attend to these fine sites:
www.onbroadwaydancers.comwww.r2rcoalcity.orgwww.tinleyparkfrankfortrotary.comwww.smalltowntheatrics.com
Use this code:8jDMwxj6yp4f2 to save on a subscription to Smugmug
Old Jun-12-2012, 03:41 PM
#2786
jfriend is offline jfriend OP
Scripting dude-volunteer
Quote:
Originally Posted by brandofamily View Post
Thanks for the input. Would you mind giving me a few pointer on positioning the homepage elements w/o using negative margins?
Your layout is far too complex for me to figure out something without the ability to directly modify things and play with the actual HTML/CSS.

When you want two objects next to each other, the usual way of doing so is to make the first one "float: left" and give it a fixed size. The next object encountered in the HTML stream will then be put to the right of it as long as it fits in the available width.

Code:
<div class="container">
    <div class="floater contentOne">content here</div>
    <div class="floater contentTwo">content here</div>
</div>
And CSS:

Code:
.floater{float: left; width: 100px; height: 600px;}
.contentTwo {width: 300px;}
Example: http://jsfiddle.net/jfriend00/nLEQJ/
__________________
--John
HomepagePopular
JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
Old Jun-12-2012, 06:27 PM
#2787
brandofamily is offline brandofamily
Just a Guy with a Camera
brandofamily's Avatar
Quote:
Originally Posted by jfriend View Post
Your layout is far too complex for me to figure out something without the ability to directly modify things and play with the actual HTML/CSS.

When you want two objects next to each other, the usual way of doing so is to make the first one "float: left" and give it a fixed size. The next object encountered in the HTML stream will then be put to the right of it as long as it fits in the available width.

Code:
<div class="container">
    <div class="floater contentOne">content here</div>
    <div class="floater contentTwo">content here</div>
</div>
And CSS:

Code:
.floater{float: left; width: 100px; height: 600px;}
.contentTwo {width: 300px;}
Example: http://jsfiddle.net/jfriend00/nLEQJ/
I have similar to what you do, at least with the popular images box. I set float left and gave it a size, but the slide show does not show up next to it.
Maybe it has to do with the fact that the popular photo box is a SM element, not my own concoction.

Edit note: yep that's sort of it. If I put the "popular photo" text in the footer w/ the slideshow code (or both in the header) I can use your float idea to get the text and the slideshow next to each other, but I cannot get the popular images box to fit in between the two.
__________________
Anthony Brandolino; Freelance Photographer • www.brandolinoimaging.com
I also attend to these fine sites:
www.onbroadwaydancers.comwww.r2rcoalcity.orgwww.tinleyparkfrankfortrotary.comwww.smalltowntheatrics.com
Use this code:8jDMwxj6yp4f2 to save on a subscription to Smugmug

Last edited by brandofamily; Jun-12-2012 at 06:58 PM.
Old Jun-17-2012, 04:16 AM
#2788
tobeme is offline tobeme
Major grins
tobeme's Avatar
I tried to add a border to the slideshow by adding these texts in the bio box but they don't seem to work.

borderThickness: '40',
borderColor: '616D7E',
borderCornerStyle: 'rounded',

Is it possible to add a boarder?
Old Jun-17-2012, 07:54 AM
#2789
jfriend is offline jfriend OP
Scripting dude-volunteer
Quote:
Originally Posted by tobeme View Post
I tried to add a border to the slideshow by adding these texts in the bio box but they don't seem to work.

borderThickness: '40',
borderColor: '616D7E',
borderCornerStyle: 'rounded',

Is it possible to add a boarder?
Please include a link to your site and we can see what you have.
__________________
--John
HomepagePopular
JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
Old Jun-17-2012, 04:18 PM
#2790
tobeme is offline tobeme
Major grins
tobeme's Avatar
Quote:
Originally Posted by jfriend View Post
Please include a link to your site and we can see what you have.
Here is a link to my site: http://wallacehuostation.smugmug.com/

I'm hoping to add a boarder around the slideshow such as the one appearing in Moonriverphotography.

I also have a question on whether it's possible to make the splash photo appears in the middle of the slideshow instead of appearing on the top? Thanks for your help. Much appreciated!
Old Jun-17-2012, 06:03 PM
#2791
jfriend is offline jfriend OP
Scripting dude-volunteer
Quote:
Originally Posted by tobeme View Post
Here is a link to my site: http://wallacehuostation.smugmug.com/

I'm hoping to add a boarder around the slideshow such as the one appearing in Moonriverphotography.

I also have a question on whether it's possible to make the splash photo appears in the middle of the slideshow instead of appearing on the top? Thanks for your help. Much appreciated!
Moonriver uses a graphic frame. That is fully described starting on page 37 of the slideshow reference.

If you want a simple border around each slide, you can use the slideBorderWidth and slideBorderColor slideshow parameters which are also fully described in the slideshow reference doc.
__________________
--John
HomepagePopular
JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
Old Jun-17-2012, 09:42 PM
#2792
tobeme is offline tobeme
Major grins
tobeme's Avatar
Quote:
Originally Posted by jfriend View Post
Moonriver uses a graphic frame. That is fully described starting on page 37 of the slideshow reference.

If you want a simple border around each slide, you can use the slideBorderWidth and slideBorderColor slideshow parameters which are also fully described in the slideshow reference doc.
Thanks! I opt for the option to put a frame around the slideshow pictures with the help of photoshop. This way it won't slow down the computer. LOL

Your work on the slideshow is amazing. Thanks for sharing.
Old Jun-19-2012, 07:22 AM
#2793
happione is offline happione
Big grins
I have searched this thread and back in November 2011 it was not then possible to embed jfriend slideshow into an external website, is this possible yet... i currently have to use the "share slideshow" option which is flash and therefore wont show on ipads etc.

Many thanks
Car0
Old Jun-19-2012, 03:59 PM
#2794
jfriend is offline jfriend OP
Scripting dude-volunteer
Quote:
Originally Posted by happione View Post
I have searched this thread and back in November 2011 it was not then possible to embed jfriend slideshow into an external website, is this possible yet... i currently have to use the "share slideshow" option which is flash and therefore wont show on ipads etc.

Many thanks
Car0
No, still not possible to use on external web sites.
__________________
--John
HomepagePopular
JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
Old Jun-20-2012, 09:39 AM
#2795
Craig831 is offline Craig831
Big grins
How to keep Jfriend slideshow running continuously
Thank you for your nice slideshow. I recently converted from the old Flash slide show to yours. Is there a way to keep your slideshow running continuously to the end of my gallery and then repeat without ever stopping?
Old Jun-20-2012, 09:43 AM
#2796
jfriend is offline jfriend OP
Scripting dude-volunteer
Quote:
Originally Posted by Craig831 View Post
Thank you for your nice slideshow. I recently converted from the old Flash slide show to yours. Is there a way to keep your slideshow running continuously to the end of my gallery and then repeat without ever stopping?
No. Because some browsers leak memory, I decided it was safer to not allow the slideshow to run forever as that can exhaust all the memory on a computer and eventually crash the browser (yes, that does happen sometimes on the Smugmug flash-based slideshow). Also, I rather doubt that anyone was going to sit there and watch images go for a really long time.

The slideshow will currently run for 200 images and then stop. It can be restarted again (for another 200 images) with the space bar.
__________________
--John
HomepagePopular
JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
Old Jun-20-2012, 10:53 AM
#2797
soccermom103 is offline soccermom103
Big grins
My Slideshow is not working
Hello,

i installed everything as the directions state, but my slideshow is not working. Can you help me?

Thank you!
Old Jun-20-2012, 10:59 AM
#2798
jfriend is offline jfriend OP
Scripting dude-volunteer
Quote:
Originally Posted by soccermom103 View Post
Hello,

i installed everything as the directions state, but my slideshow is not working. Can you help me?

Thank you!
I could if you included a link to your site.
__________________
--John
HomepagePopular
JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
Old Jun-20-2012, 11:07 AM
#2799
soccermom103 is offline soccermom103
Big grins
Im Sorry....www.allstarspics.com
Old Jun-20-2012, 11:11 AM
#2800
jfriend is offline jfriend OP
Scripting dude-volunteer
Quote:
Originally Posted by soccermom103 View Post
Your script is not correct. This:

Code:
<script type="text/javascript">
JF.InsertSlideshowHere({
http://www.allstarspics.com/COMPOSITE-PHOTOS-1/Composites/12531490_ZPGWJt#!i=1665408561&k=WN53Jfs: "",
stretchy: "true"}

);
</script>
should be this:

Code:
<script type="text/javascript">
JF.InsertSlideshowHere({
    galleryURL: "http://www.allstarspics.com/COMPOSITE-PHOTOS-1/Composites/12531490_ZPGWJt",
    stretchy: "true"}
);
</script>
__________________
--John
HomepagePopular
JFriend's javascript customizationsSecrets for getting fast answers on Dgrin
Always include a link to your site when posting a question
Page 140  of  179
Tell The World!  
Tags
advanced , custom header , flash , help me , slideshow
Similar Threads Thread Starter Forum Replies Last Post
JFriend HTML5 Slideshow Linisa SmugMug Customization 3 Sep-10-2011 04:57 AM
JFriend Slideshow Covering up Main body and smugmug navbar stormy315 SmugMug Customization 1 Aug-15-2011 04:47 PM
Clean up bio before installing JFriend HTML5 slideshow DougG SmugMug Customization 6 Jun-03-2011 12:00 PM
New BETA release onethumb SmugMug Support 64 Jan-10-2007 05:14 PM
Adobe Camera Raw 2.4 beta (update-full release 1/31/05) patch29 The Big Picture 3 Jan-31-2005 02:12 PM


Thread Tools
Display Modes

Posting Rules  
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump