• Gear
  • Shots
  • Photo Craft
  • Video
  • Wide Angle
  • Support
  • New Stuff
  • More
Support SmugMug Customization HTML only pages

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
Old Jul-17-2012, 10:04 AM
#1
prairiefox is offline prairiefox OP
Beginner grinner
HTML only pages
Hi there,

I am wanting to have some pages as HTML only pages and I have been able to add the code, but I don't know how to get rid of the gallery below.

I also want to insert an image, not as a gallery, but just as an HTML component and on other sites I would usually load the image into my database and then use that link in my code to paste in. How do I do that on here without it being in a gallery? Here is the code I am trying to use.

<a href="http://shuswaponcanvas.smugmug.com/Pricing/pricing/24129209_wwFBVc"><img class="aligncenter" src="http://shuswaponcanvas.smugmug.com/Other/website-art/24224789_XVQ66r#!i=1971103006&k=PrhNRKk" alt="" /></a>
Attached Images
 
Old Jul-17-2012, 10:59 AM
#2
J Allen is offline J Allen
Major grins
J Allen's Avatar
Quote:
Originally Posted by prairiefox View Post
I am wanting to have some pages as HTML only pages and I have been able to add the code, but I don't know how to get rid of the gallery below.

Add this to your CSS, and check the page logged out or in "visitor view":

Code:
/*Remove Photo Message*/
.notLoggedIn .nophotos, 
.notLoggedIn .emptyGallery {display:none}
__________________
-Joe Allen
My Smugmug Site
Old Jul-17-2012, 11:00 AM
#3
J Allen is offline J Allen
Major grins
J Allen's Avatar
Quote:
Originally Posted by prairiefox View Post

I also want to insert an image, not as a gallery, but just as an HTML component and on other sites I would usually load the image into my database and then use that link in my code to paste in. How do I do that on here without it being in a gallery? Here is the code I am trying to use.

<a href="http://shuswaponcanvas.smugmug.com/Pricing/pricing/24129209_wwFBVc"><img class="aligncenter" src="http://shuswaponcanvas.smugmug.com/Other/website-art/24224789_XVQ66r#!i=1971103006&k=PrhNRKk" alt="" /></a>

Add the code to the gallery description area...but add html tags around it:
Code:
<html>

your code here

</html>
__________________
-Joe Allen
My Smugmug Site
Old Jul-17-2012, 11:01 AM
#4
J Allen is offline J Allen
Major grins
J Allen's Avatar
Quote:
Originally Posted by prairiefox View Post
Hi there,

__________________
-Joe Allen
My Smugmug Site
Old Jul-19-2012, 11:39 AM
#5
prairiefox is offline prairiefox OP
Beginner grinner
hide galleries on specific pages only
Thank you for supplying this code for me, I really appreciate it. One thing I noticed which will likely cause an issue is that this seems to refer to all Galleries that are emtpy. Right now I have several other galleries that are empty as well, which will have photos input, so I don't want those galleries hidden. Can you please advise me on how to specify this code for certain pages or Galleries?
Thank you.

Quote:
Originally Posted by J Allen View Post
Add this to your CSS, and check the page logged out or in "visitor view":

Code:
/*Remove Photo Message*/
.notLoggedIn .nophotos, 
.notLoggedIn .emptyGallery {display:none}
Old Jul-19-2012, 11:43 AM
#6
prairiefox is offline prairiefox OP
Beginner grinner
place image with HTML
The code I supplied didn't include the html tags as you have advised, but it is there and still not working. I suspect the code is wrong or the image hasn't been loaded to the proper place for this to work.


Quote:
Originally Posted by J Allen View Post
Add the code to the gallery description area...but add html tags around it:
Code:
<html>

your code here

</html>
Attached Images
 
Old Jul-19-2012, 12:36 PM
#7
J Allen is offline J Allen
Major grins
J Allen's Avatar
Quote:
Originally Posted by prairiefox View Post
Right now I have several other galleries that are empty as well, which will have photos input, so I don't want those galleries hidden.

this will not hide any galleries....only the message that states the gallery is empty
__________________
-Joe Allen
My Smugmug Site
Old Jul-19-2012, 12:40 PM
#8
J Allen is offline J Allen
Major grins
J Allen's Avatar
Quote:
Originally Posted by prairiefox View Post
The code I supplied didn't include the html tags as you have advised, but it is there and still not working. I suspect the code is wrong or the image hasn't been loaded to the proper place for this to work.

your photo link is not correct....change the whole code to this:


Code:
<html>
<center>
<a href="/gallery/24129209_wwFBVc">
<img src="/photos/i-PrhNRKk/0/O/Pricing-page.png"border="0"></a>
</center>
</html>
__________________
-Joe Allen
My Smugmug Site

Last edited by J Allen; Jul-19-2012 at 12:51 PM.
Old Jul-19-2012, 04:16 PM
#9
prairiefox is offline prairiefox OP
Beginner grinner
THANK YOU! You have really helped me get this site to where I wanted it. I really appreciate you providing code and advice for me. Is there an emoticon for shaking someones hand?

The last thing I just noticed is that the page description links seem to show up near the navigation and I would like to hide them. How can I do this? The photo attached should show it in yellow which shows up on pretty much every page.

Thanks J Allen.

Quote:
Originally Posted by J Allen View Post
your photo link is not correct....change the whole code to this:


Code:
<html>
<center>
<a href="/gallery/24129209_wwFBVc">
<img src="/photos/i-PrhNRKk/0/O/Pricing-page.png"border="0"></a>
</center>
</html>
Attached Images
 
Old Jul-20-2012, 02:53 AM
#10
J Allen is offline J Allen
Major grins
J Allen's Avatar
Quote:
Originally Posted by prairiefox View Post
THANK YOU! You have really helped me get this site to where I wanted it. I really appreciate you providing code and advice for me. Is there an emoticon for shaking someones hand?

The last thing I just noticed is that the page description links seem to show up near the navigation and I would like to hide them. How can I do this? The photo attached should show it in yellow which shows up on pretty much every page.

Thanks J Allen.

That is called a "breadcrumb"....to hide it on all pages, add this to your CSS:

Code:
/*Remove Breadcrumbs*/ .notLoggedIn #breadCrumbTrail {display:none}

If you want to only hide it on specific pages, then you would use the same code, but target the gallery:
Code:
.gallery_xxxxxx #breadCrumbTrail {display:none}
__________________
-Joe Allen
My Smugmug Site
Old Jul-20-2012, 09:33 AM
#11
prairiefox is offline prairiefox OP
Beginner grinner
breadcrumbs hidden
Ok, that is fantastic. Thank you so much for all your help. Things look great and I am a happy camper. Have a great weekend Allen.

Colin

Quote:
Originally Posted by J Allen View Post
That is called a "breadcrumb"....to hide it on all pages, add this to your CSS:

Code:
/*Remove Breadcrumbs*/ .notLoggedIn #breadCrumbTrail {display:none}

If you want to only hide it on specific pages, then you would use the same code, but target the gallery:
Code:
.gallery_xxxxxx #breadCrumbTrail {display:none}
Tell The World!  
Tags
gallery , html , images , insert links , links
Similar Threads Thread Starter Forum Replies Last Post
html pages with photos and photo borders Peanut_5 SmugMug Customization 2 Aug-12-2011 04:38 AM
Making a stretchy HTML border for About Me and Services pages Kyle D SmugMug Customization 4 Jan-19-2009 09:38 AM
HTML on Gallery Pages rhlewis SmugMug Support 2 Jan-06-2009 02:46 PM
html gallery pages with photo cover? mogue SmugMug Support 8 Jun-27-2007 06:41 AM
Why not our own HTML entry pages? jfriend SmugMug Support 10 Mar-08-2005 09:30 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