PDA

View Full Version : Need help adding a link


Iron Creek
Nov-08-2006, 08:42 PM
I asked this earlier however no solution has been found. I'd like to add a link in a gallery. I've tried to add the link in the gallery description as suggested by Andy however that didn't work. The link would show and work right after saving the change to the description however after closing the gallery and returning the link simply wasn't there. I'd really like to add this link to the gallery and not have it in my bio on my home page. The galley I'm attempting to add the link to is "Moon Shots" under the category of "The Night Sky". The site is ironcreekphoto.smugmug.com.

I'll go on to my next project if this can't be done and just leave the link in the bio area.

I have searched for answers to this question but so far haven't gotten any.........:dunno

Andy
Nov-08-2006, 09:11 PM
I asked this earlier however no solution has been found. I'd like to add a link in a gallery. I've tried to add the link in the gallery description as suggested by Andy however that didn't work. The link would show and work right after saving the change to the description however after closing the gallery and returning the link simply wasn't there. I'd really like to add this link to the gallery and not have it in my bio on my home page. The galley I'm attempting to add the link to is "Moon Shots" under the category of "The Night Sky". The site is ironcreekphoto.smugmug.com.

I'll go on to my next project if this can't be done and just leave the link in the bio area.

I have searched for answers to this question but so far haven't gotten any.........:dunno

I've already done this once. I've done it again for you.

Now you can edit the link here:
http://ironcreekphoto.smugmug.com/gallery/2105223

If you cannot edit it there, then you can edit it here:

http://ironcreekphoto.smugmug.com/gallery/settings.mg?AlbumID=2105223&ImageID=108751973

which is gallery customization.

OK? :ear

Mike Lane
Nov-08-2006, 09:13 PM
The problem lies not in Andy's suggestion from the other thread, the problem lies in the code that you've got in your header. Here's what you've got:

<font face="Comic Sans MS"><font size="5"><color="cc9933"><i>Landscape & Nature Images<font></i><br>
<font face="Georgia"><font size="4"><color="cc3333"><a <font size="4"><color="cc3333"><a href="mailto: ironcreekphoto@msn.com">Email</a><br>
<font size="4"><color="ffffff">520-603-7862<font><br>
<font size="4"><color="ffffff">Tucson, AZ<font>


There's just too much wrong with that to really go into the delete the red add the green stuff. So let me just give you the updated code. Put this in your header html in place of all of that:

Header HTML:

<div id="myContactInfo">
<h2>Landscape and Nature Images</h2>
<p><a href="mailto:ironcreekphoto@msn.com">Email</a></p>
<p>520-603-7862</p>
<p>Tucson, AZ</p>
</div>


And put this in your CSS:

CSS:

#myContactInfo {
text-align:center;
font:16pt georgia;
color:#fff;
}

#myContactInfo h2 {
font:italic 20pt "comic sans ms";
color:#c93;
}

#myContactInfo a:link,
#myContactInfo a:visited {
color:#c33;
}



That should get you close and then you can adjust it from there. Ask if you need help doing so.

Iron Creek
Nov-08-2006, 09:50 PM
I've already done this once. I've done it again for you.

Now you can edit the link here:
http://ironcreekphoto.smugmug.com/gallery/2105223

If you cannot edit it there, then you can edit it here:

http://ironcreekphoto.smugmug.com/gallery/settings.mg?AlbumID=2105223&ImageID=108751973

which is gallery customization.

OK? :ear

Andy - not too sure what's going on here but let me attempt to explain. I used your fix last night and today with out it working past the saved button as I attempted to explain above. I just tried it out once again after this message. Guess what ... it now works. I did the same thing tonight that I did all day yesterday and into today however it now works. Don't ask me why or how I just dang glad it works so that I can go on to other aspects of my fine tuning and hopeful leave you alone.

Many thanks for your help

Okay?

Iron Creek
Nov-08-2006, 09:52 PM
The problem lies not in Andy's suggestion from the other thread, the problem lies in the code that you've got in your header. Here's what you've got:

<font face="Comic Sans MS"><font size="5"><color="cc9933"><i>Landscape & Nature Images<font></i><br>
<font face="Georgia"><font size="4"><color="cc3333"><a <font size="4"><color="cc3333"><a href="mailto: ironcreekphoto@msn.com">Email</a><br>
<font size="4"><color="ffffff">520-603-7862<font><br>
<font size="4"><color="ffffff">Tucson, AZ<font>


There's just too much wrong with that to really go into the delete the red add the green stuff. So let me just give you the updated code. Put this in your header html in place of all of that:

Header HTML:

<div id="myContactInfo">
<h2>Landscape and Nature Images</h2>
<p><a href="mailto:ironcreekphoto@msn.com">Email</a></p>
<p>520-603-7862</p>
<p>Tucson, AZ</p>
</div>


And put this in your CSS:

CSS:

#myContactInfo {
text-align:center;
font:16pt georgia;
color:#fff;
}

#myContactInfo h2 {
font:italic 20pt "comic sans ms";
color:#c93;
}

#myContactInfo a:link,
#myContactInfo a:visited {
color:#c33;
}



That should get you close and then you can adjust it from there. Ask if you need help doing so.

Mike - thanks for the information. I'll try it out as soon as I can.