• Gear
  • Shots
  • Photo Craft
  • Video
  • Wide Angle
  • Support
  • New Stuff
  • More
Support SmugMug Customization HTML Thread and linking to nav bar

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 1  of  2
1 2
Old Mar-14-2011, 08:48 AM
#1
lthurmon is offline lthurmon OP
Big grins
HTML Thread and linking to nav bar
I am having a problem linking a created HTML page to the nav bar so that it will work.

my site is sweetpeonyphotography.com

i would like the slide show on the homepage like it is. i would like a single picture and info text on the About Lauren page, I have finally figured out the Galleries section of the nav bar and it works and i also need to be able to link html text for my pricing and contact links in the navbar. can you please help.
Old Mar-14-2011, 10:07 AM
#2
J Allen is offline J Allen
Major grins
J Allen's Avatar
Quote:
Originally Posted by lthurmon View Post
I am having a problem linking a created HTML page to the nav bar so that it will work.

my site is sweetpeonyphotography.com

i would like the slide show on the homepage like it is. i would like a single picture and info text on the About Lauren page, I have finally figured out the Galleries section of the nav bar and it works and i also need to be able to link html text for my pricing and contact links in the navbar. can you please help.

Can you provide a direct link to your "about", "pricing", and "contact" pages.
__________________
-Joe Allen
My Smugmug Site
Old Mar-14-2011, 10:29 AM
#3
lthurmon is offline lthurmon OP
Big grins
Hi there, somehow they are all direct copies of the homepage and the link to those three tabs are all

http://www.sweetpeonyphotography.com/
Old Mar-14-2011, 10:36 AM
#4
Allen is online now Allen
"tweak 'til it squeaks"
Allen's Avatar
Quote:
Originally Posted by lthurmon View Post
You have the gallery unlisted so we would need direct links to the galleries.
Old Mar-14-2011, 10:43 AM
#5
lthurmon is offline lthurmon OP
Big grins
ok its public now and here is the gallery

http://www.sweetpeonyphotography.com...16191350_N3XHL
Old Mar-14-2011, 10:51 AM
#6
lthurmon is offline lthurmon OP
Big grins
http://www.sweetpeonyphotography.com...16193027_kAuRx

http://www.sweetpeonyphotography.com...16193049_e763z
Old Mar-14-2011, 11:40 AM
#7
J Allen is offline J Allen
Major grins
J Allen's Avatar

Change your custom header box to this:

Code:
<div id="navcontainer">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/gallery/16191350_N3XHL">About Lauren</a></li>
<li><a href="/galleries">Galleries</a></li>
<li><a href="/gallery/16193027_kAuRx">Pricing</a></li>
<li><a href="/gallery/16193049_e763z">Contact</a></li>
</ul>
</div>
__________________
-Joe Allen
My Smugmug Site
Old Mar-14-2011, 11:45 AM
#8
lthurmon is offline lthurmon OP
Big grins
Ok I did that and now my navbar is bulleted to the side and im seeing nothing but galleries and slide show on every category.
Old Mar-14-2011, 11:47 AM
#9
lthurmon is offline lthurmon OP
Big grins
My ultimate goal is to have a home page with my header and nav bar and slideshow. Then I would like to have an "About Lauren" page with info about myself and a picture of my family, a "Galleries" page with all my albums, a pricing page with information about pricing and info and a "Contact" page with all my information.
Old Mar-14-2011, 11:55 AM
#10
J Allen is offline J Allen
Major grins
J Allen's Avatar
Quote:
Originally Posted by lthurmon View Post
My ultimate goal is to have a home page with my header and nav bar and slideshow. Then I would like to have an "About Lauren" page with info about myself and a picture of my family, a "Galleries" page with all my albums, a pricing page with information about pricing and info and a "Contact" page with all my information.

we'll get ya there...but first remove this from your CSS box....it goes into your custom header box....this should be the only thing in your custom header box:



Code:
<div id="navcontainer">
<ul>
<li><a href="/">Home</a></li>
<li><a href="/gallery/16191350_N3XHL">About Lauren</a></li>
<li><a href="/galleries">Galleries</a></li>
<li><a href="/gallery/16193027_kAuRx">Pricing</a></li>
<li><a href="/gallery/16193049_e763z">Contact</a></li>
</ul>
</div>
__________________
-Joe Allen
My Smugmug Site
Old Mar-14-2011, 11:56 AM
#11
lthurmon is offline lthurmon OP
Big grins
Ahhhh, there is my mistake...I put it in CSS and now everything I had there is gone....sigh.
Old Mar-14-2011, 12:01 PM
#12
J Allen is offline J Allen
Major grins
J Allen's Avatar
Quote:
Originally Posted by lthurmon View Post
Ahhhh, there is my mistake...I put it in CSS and now everything I had there is gone....sigh.

Add this to your CSS and it should get you close to what you had before:

Code:
#navcontainer ul 
{margin: 0;padding: 0;
list-style-type: none;
text-align: center;}

#navcontainer ul li 
{display: inline;}

#navcontainer ul li a 
{text-decoration: none;
padding: .2em 1em;
color:#fff;background-color:none}

#navcontainer ul li a:hover
{color:#fff;background-color:none}
__________________
-Joe Allen
My Smugmug Site
Old Mar-14-2011, 12:06 PM
#13
lthurmon is offline lthurmon OP
Big grins
That's about right....just what I am looking for. Last thing in my CSS was a code I found to keep the galleries checked but hidden on homepage so they would only come up on the galleries page. Thanks you are great!
Old Mar-14-2011, 12:07 PM
#14
J Allen is offline J Allen
Major grins
J Allen's Avatar
Quote:
Originally Posted by lthurmon View Post
That's about right....just what I am looking for. Last thing in my CSS was a code I found to keep the galleries checked but hidden on homepage so they would only come up on the galleries page. Thanks you are great!


Add this to your CSS and see if you like:


Code:

/*************************************************
 ====  Remove Photo Message  ====
*************************************************/
.notLoggedIn .nophotos {display:none;}


/*************************************************
=== Line Gallery Thumbs 4-Across  ===
*************************************************/
.miniBox {width:122px; text-align:center; height:210px; margin:0 28px;}
.miniBox .photo {float:none; width:122px; height:auto; _height:1px;}
.miniBox .albumTitle {width:122px;}
.miniBox .description {width:122px;}
.miniBox .updated {width:122px;}
.loggedIn .miniBox {height:auto; min-height:300px;}
.loggedIn .miniBox .smbuttons {margin:0 auto; width:122px;}
.loggedIn .miniBox input {width:122px;}
.loggedIn .miniBox textarea {width:112px;}
.boxBottom .albumLarge {width:192px; height:350px; text-align:center; margin:0 24px;}
.albumLarge .photoLarge {float:none; width:192px; height:auto; _height:1px;}
.albumLarge .albumTitle {width:192px;}
.albumLarge .description {width:192px;}
.albumLarge .updated {width:192px;}
.loggedIn .boxBottom .albumLarge {height:auto; min-height:450px;}
.loggedIn .albumLarge .smbuttons {margin:0 auto; width:192px;}
.loggedIn .albumLarge input {width:192px;}
.loggedIn .albumLarge textarea {width:182px;} 


/*************************************************
 ====  Stretch Gallery Thumbs  ====
*************************************************/
.galleries #homepage, #content.userKeywords,
#header_wrapper, #footer_wrapper, #cobrand_footer,
#category, #subcategory, #header,
#smugmug, .smugmug #header, .smugmug #footer 
{margin-left: 15px;margin-right: 15px;min-width: 755px;
width: auto;_width: expression
(document.documentElement.clientWidth < 790? "760px" : "auto");}






/*===== Galleries Page =====*/
#bioBox .photo, .galleries #bioBox,  
.homepage #galleriesBox,
.homepage #categoriesBox,
.homepage #featuredBox  {display:none}
.galleries #galleriesBox,
.galleries #categoriesBox,
.galleries #featuredBox  
{display:block}
.galleries #slideshowBox 
{display:none}
__________________
-Joe Allen
My Smugmug Site
Old Mar-14-2011, 12:11 PM
#15
lthurmon is offline lthurmon OP
Big grins
LOVE IT!!!!!!!!! Perfect!!!!!!!! Can't thank you enough!

Lauren
Old Mar-14-2011, 12:12 PM
#16
J Allen is offline J Allen
Major grins
J Allen's Avatar
Quote:
Originally Posted by lthurmon View Post
LOVE IT!!!!!!!!! Perfect!!!!!!!! Can't thank you enough!

Lauren

wanna try to tackle those info pages and get them all pretty?
__________________
-Joe Allen
My Smugmug Site
Old Mar-14-2011, 12:13 PM
#17
lthurmon is offline lthurmon OP
Big grins
One last thing. On the html pages is there any way to add spacing in between paragraphs so it just doesn't all run together?
Old Mar-14-2011, 12:16 PM
#18
lthurmon is offline lthurmon OP
Big grins
Sure I would love too!!!!!!!!
Old Mar-14-2011, 12:18 PM
#19
J Allen is offline J Allen
Major grins
J Allen's Avatar
Quote:
Originally Posted by lthurmon View Post
Sure I would love too!!!!!!!!
ok...stand by for a few minutes....if you would like all your pages to have the same background wallpaper, like your homepage, then add this to your CSS:



Code:
body
{background-image:
url('http://cdn.smugmug.com/img/themes/wallpaperbrown/body_bg.jpg') !important}
__________________
-Joe Allen
My Smugmug Site
Old Mar-14-2011, 12:34 PM
#20
J Allen is offline J Allen
Major grins
J Allen's Avatar
For your "about page".....


Go to your about page, and change the album description to this:


Code:

<html>
<div class="myTitle">
  About Me...
</div>     <!-- closes myTitle div -->

<div class="myPhoto">
  <img src="/photos/1216267614_K4DyZ-S.jpg" width="400" height="267" />
</div>     <!-- closes myPhoto div -->

<div class="myText">
<p>
My name is Lauren Thurmon and the art of photography is a tremendous part of my life. Driven by my passion, my aim is to create simply beautiful photographs. I am a self taught, natural light photographer specializing in on location photography.
</p>

<p>
My specialties include newborns, children, birthdays, families, engagements, weddings, maternity and sporting event photography.
</p>

<p>
I enjoy meeting new friends through my travels as a free lance photographer and I look forward to working with you. In addition to my talents in photography, I hold a BS in Health Sciences (Administration), a Master of Arts in Early Elementary Education, and Fitness Certifications in Zumba and Zumbatomic (Kids). I am an accomplished wife, mother and classical homeschool nurturer.
</p>


<p>
I married my high school sweetheart Shaun and we are parents to two beautiful children, Emily Anne (6) and Garrett Christopher (5). I dream that someday the step between my mind and my finger will no longer be needed. And that simply by blinking my eyes, I shall make pictures. Then, I think, I shall really have become a photographer. 
</p>



</div>     <!-- closes myText div -->
<div class="spacer"></div>
</html>



Then add this to your CSS box :

Code:

/*************************************************
     =======  About Me Page  =======
*************************************************/
.gallery_16191350 #albumDescription 
{margin-top:10px;background:#211C18;
padding:20px 40px 40px 40px;
border:1px solid #313029;
-webkit-box-shadow: 0px 3px 6px rgba(0, 0, 0, .5);
-moz-box-shadow: 0px 3px 6px rgba(0, 0, 0, .5);
filter:progid:DXImageTransform.Microsoft.Shadow
(Color='000000', direction='135', strength='3');_filter: none;
-moz-border-radius: 8px;-khtml-border-radius: 8px;
-webkit-border-radius: 8px;
opacity:0.7;filter:alpha(opacity=70) !important;
width:800px;margin:auto}                                   
 
.gallery_16191350 .myPhoto 
{float:left;padding: 0 30px 10px 0;}

.gallery_16191350 .myPhoto img 
{border:1px solid #313029}

.gallery_16191350 .myTitle 
{font-family:arial; 
font-size: 150%;color:#fff;
font-weight:bold;text-align:center;
margin:auto}

.gallery_16191350 .myText 
{font-family:arial; 
font-size:100%;color:#fff;
font-weight: normal; text-align: justify;}

.gallery_16191350 .journal_entry, 
.gallery_16191350 #breadCrumbTrail,
.gallery_16191350 .play_slideshow,
.gallery_16191350 #viewingStylesButton, 
.gallery_16191350 .share_button,
.gallery_16191350 #albumNav_top,
.gallery_16191350 #albumNav_bottom,
.gallery_16191350 .pageNav,
.notLoggedIn .gallery_16191350 #photos
{display:none}
.gallery_16191350 .journal_entry  {border:none;}

Check the page in "visitor view" when done.
__________________
-Joe Allen
My Smugmug Site
Page 1  of  2
1 2
Tell The World!  
Similar Threads Thread Starter Forum Replies Last Post
Customizing for Dummies - Chapter 1 Mike Lane SmugMug Customization 17 Jan-08-2012 08:26 AM
Linking to specific photos from external sites hontzd SmugMug Support 6 Nov-20-2010 09:03 PM
Sandra's Help Thread sklonergan SmugMug Customization 25 Feb-02-2009 05:52 PM
Linking to photos? Instructions to visitors for details? lokerd SmugMug Support 21 Apr-01-2007 11:43 AM
Anabel's Thread Barb SmugMug Customization 16 Jan-14-2007 01:41 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