• Gear
  • Shots
  • Photo Craft
  • Video
  • Wide Angle
  • Support
  • New Stuff
  • More
Support SmugMug Customization slideshow border

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 Oct-05-2007, 12:28 PM
#1
lots of pics is offline lots of pics OP
Big grins
slideshow border
I have read the info on the border and I inserted the code into my CSS however i still have no border. Also, can I change the colors of the border? I would like a black and brown border.

On another note, I have my slogan at the bottom of my footer in white. I just changed my theme. What color number do i need to change my slogan to in order for it to match the rest of my theme?

Thank you very much for all of your great help. I know none of us would be able to do this without Dgrin!!!

Jamie

www.timelessmoment.com
Old Oct-05-2007, 12:42 PM
#2
Allen is online now Allen
"tweak 'til it squeaks"
Allen's Avatar
Quote:
Originally Posted by lots of pics
I have read the info on the border and I inserted the code into my CSS however i still have no border. Also, can I change the colors of the border? I would like a black and brown border.

On another note, I have my slogan at the bottom of my footer in white. I just changed my theme. What color number do i need to change my slogan to in order for it to match the rest of my theme?

Thank you very much for all of your great help. I know none of us would be able to do this without Dgrin!!!

Jamie

www.timelessmoment.com
This looks like html, doesn't belong in CSS.

<style type="text/css"rel="stylesheet"id="smugmugBlacCSS" href="http://css.smugmug.com/css/smugmugBlack=2007092711630.css" />
<style type="text/css">


You're missing a block; or none; after display: here.

#stylebar {
display:
margin: 0px auto;
margin-top: 30px;
height: 525px;
width: 750px;
border: 5px ridge #36C;
background: #f5f5f5 !important;
text-align:center;
}



Remove this from your CSS.

the following css is required if slideshow controls are enabled:


You have two of these, might combine them.

#My_Footer {
margin: 0px auto;
text-align: center;
font-family: Verdana, Arial, Helvetica;
}

#My_Footer {
margin: 0 auto;
font-family: Verdana, Arial, Helvetica;
}



In your footer change the color here.

<p align="center"><font color="#927348" face="Lucida Fax">"Taking pictures
today and creating a timeless moment for tomorrow".</font></p>
<p>&nbsp;</p>
Old Oct-05-2007, 06:45 PM
#3
lots of pics is offline lots of pics OP
Big grins
border still not working
Quote:
Originally Posted by Allen
This looks like html, doesn't belong in CSS.

<style type="text/css"rel="stylesheet"id="smugmugBlacCSS" href="http://css.smugmug.com/css/smugmugBlack=2007092711630.css" />
<style type="text/css">


You're missing a block; or none; after display: here.

#stylebar {
display:
margin: 0px auto;
margin-top: 30px;
height: 525px;
width: 750px;
border: 5px ridge #36C;
background: #f5f5f5 !important;
text-align:center;
}



Remove this from your CSS.

the following css is required if slideshow controls are enabled:


You have two of these, might combine them.

#My_Footer {
margin: 0px auto;
text-align: center;
font-family: Verdana, Arial, Helvetica;
}

#My_Footer {
margin: 0 auto;
font-family: Verdana, Arial, Helvetica;
}



In your footer change the color here.

<p align="center"><font color="#927348" face="Lucida Fax">"Taking pictures
today and creating a timeless moment for tomorrow".</font></p>
<p>&nbsp;</p>

Thanks for your notes!!!

They were a great help. My border still does not come up. I did not delete the info in the CSS about the controls just in case I decide to use them one day soon.

Thanks.
Jamie

www.timelessmoment.com
Old Oct-05-2007, 07:31 PM
#4
Allen is online now Allen
"tweak 'til it squeaks"
Allen's Avatar
Quote:
Originally Posted by lots of pics
Thanks for your notes!!!

They were a great help. My border still does not come up. I did not delete the info in the CSS about the controls just in case I decide to use them one day soon.

Thanks.
Jamie

www.timelessmoment.com
Think I found yoru border. This below looked funny until I relized you're
missing a few lines.

#stylebar {
display: none;
margin: 0px auto;
margin-top: 30px;
height: 525px;
width: 750px;
border: 5px ridge #36C;
background: #f5f5f5 !important;
text-align:center;
}

Change it to this.

#stylebar {
display: none;}

#bioBox {

margin: 0 auto;
margin-top: 10px;
height: 430px;
width: 640px;
border: 8px ridge #705B3D;
background: #A68064;
text-align: center;
}

#ssSlide {
margin: 0 auto;
height: 400px;
margin-top: 20px;
margin-left: 15px;
}

There are many ways to format this so any thing you wnat to try
holler back.


Remove the bold below, it's covered above and add the red comment tags.

/* center the slideshow */
#bioBox { text-align: center; }


/* the following css is required if slideshow controls are enabled */
Old Oct-06-2007, 05:46 AM
#5
lots of pics is offline lots of pics OP
Big grins
Thank You!!!
Quote:
Originally Posted by Allen
Think I found yoru border. This below looked funny until I relized you're
missing a few lines.

#stylebar {
display: none;
margin: 0px auto;
margin-top: 30px;
height: 525px;
width: 750px;
border: 5px ridge #36C;
background: #f5f5f5 !important;
text-align:center;
}

Change it to this.

#stylebar {
display: none;}

#bioBox {

margin: 0 auto;
margin-top: 10px;
height: 430px;
width: 640px;
border: 8px ridge #705B3D;
background: #A68064;
text-align: center;
}

#ssSlide {
margin: 0 auto;
height: 400px;
margin-top: 20px;
margin-left: 15px;
}

There are many ways to format this so any thing you wnat to try
holler back.


Remove the bold below, it's covered above and add the red comment tags.

/* center the slideshow */
#bioBox { text-align: center; }


/* the following css is required if slideshow controls are enabled */

WOW!!! Thank you so much!!!! It looks perfect!!!
Tell The World!  

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