• Gear
  • Shots
  • Photo Craft
  • Video
  • Wide Angle
  • Support
  • New Stuff
  • More
Support SmugMug Customization Gallery Page Album Title CSS

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-03-2012, 08:39 AM
#1
kshays is offline kshays OP
Big grins
Gallery Page Album Title CSS
Hi,

I've used inspect element on the gallery page, but for some reason I'm having a hard time with the albumTitle. I would like for the album title to be 105px wide and appear below the thumbnail. Can anyone take a look and see which css class/ID I need to add into the css box?

I also need to change the background-color on the gallery only page to match the bottom color gradient. #04090C

http://www.kevinhaysphotography.com

Thanks,

Kevin
Old Oct-03-2012, 09:22 AM
#2
Allen is offline Allen
"tweak 'til it squeaks"
Allen's Avatar
Quote:
Originally Posted by kshays View Post
Hi,

I've used inspect element on the gallery page, but for some reason I'm having a hard time with the albumTitle. I would like for the album title to be 105px wide and appear below the thumbnail. Can anyone take a look and see which css class/ID I need to add into the css box?

I also need to change the background-color on the gallery only page to match the bottom color gradient. #04090C

http://www.kevinhaysphotography.com

Thanks,

Kevin
This is the CSS to format the miniboxes. See this page. Tweaks in red.
Code:
/* ==================================================== */
/* == FAQ #18, Line up boxes with titles underneath === */
/* ============== Current as of 13 Feb 07 ============= */
/* ==================================================== */

.miniBox {width:122px; text-align:center; height:140px; margin:0 29px 15px; padding-top: 5px;}
  .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 !important; 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;}
I've comment out the parts that would apply in the above CSS.
Code:
.miniBox {
  background-color: aliceblue;
  border: 1px solid #ccc;
  /* width: 105px; */
  /* height: 105px; */
  /* float:left; */
  /* padding: 5px; */
}
Add this to your CSS. The color matches the bottom on your gradient.

html {background:#000101;}
Old Oct-03-2012, 09:28 AM
#3
kshays is offline kshays OP
Big grins
Hey Allen,

Gotta admit that was fast and accurate :) Exactly what I was needing.

Thanks for the assistance!

Kevin
Old Oct-03-2012, 09:30 AM
#4
Allen is offline Allen
"tweak 'til it squeaks"
Allen's Avatar
Quote:
Originally Posted by kshays View Post
Hi,

I've used inspect element on the gallery page, but for some reason I'm having a hard time with the albumTitle. I would like for the album title to be 105px wide and appear below the thumbnail. Can anyone take a look and see which css class/ID I need to add into the css box?

I also need to change the background-color on the gallery only page to match the bottom color gradient. #04090C

http://www.kevinhaysphotography.com

Thanks,

Kevin
Tweaked for five across. Remove the lines in the .miniBox rule I posted in last post.
Code:
/* ==================================================== */
/* == FAQ #18, Line up boxes with titles underneath === */
/* ============== Current as of 13 Feb 07 ============= */
/* ==================================================== */

.miniBox {width:122px; text-align:center; height:140px; margin:0 10.5px 15px; padding-top: 5px;}
  .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 !important; 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;}
Old Oct-03-2012, 09:39 AM
#5
kshays is offline kshays OP
Big grins
Yeah, I like 5 across much better. Actually I was thinking about that then saw your post.

:)

Still working on trying to get the site user friendly and adding more content in the process.
Old Oct-03-2012, 11:34 AM
#6
Allen is offline Allen
"tweak 'til it squeaks"
Allen's Avatar
Quote:
Originally Posted by kshays View Post
Yeah, I like 5 across much better. Actually I was thinking about that then saw your post.

:)

Still working on trying to get the site user friendly and adding more content in the process.
One suggestion, make the about gallery unlisted under gallery settings. No reason to show it on your
galleries page. The direct link in your navbar suffices.
Old Oct-03-2012, 11:55 AM
#7
kshays is offline kshays OP
Big grins
Will do.

One other question, just made a drop down for Galleries. I'm not sure if I like it or not. If it stays then the last menu item is hid beneath the slideshow. Trying to think if I want to have the drop down on Galleries to a main category or revert it back.

What do you think?
Old Oct-03-2012, 01:18 PM
#8
Allen is offline Allen
"tweak 'til it squeaks"
Allen's Avatar
Quote:
Originally Posted by kshays View Post
Will do.

One other question, just made a drop down for Galleries. I'm not sure if I like it or not. If it stays then the last menu item is hid beneath the slideshow. Trying to think if I want to have the drop down on Galleries to a main category or revert it back.

What do you think?
Add the red in your CSS.
Code:
#nav {
  position:relative;
  z-index:99;
  text-align: center; 
}
Old Oct-03-2012, 01:41 PM
#9
kshays is offline kshays OP
Big grins
Perfect Allen. Looks like I need to see what the z-index property does :)

ty!
Old Oct-03-2012, 02:06 PM
#10
Allen is offline Allen
"tweak 'til it squeaks"
Allen's Avatar
Quote:
Originally Posted by kshays View Post
Perfect Allen. Looks like I need to see what the z-index property does :)

ty!
http://www.w3schools.com/cssref/pr_pos_z-index.asp
Tell The World!  
Tags
gallery css album title
Similar Threads Thread Starter Forum Replies Last Post
Gallery name in Page title Patrik SmugMug Customization 6 Apr-26-2012 12:43 AM
Change page title based on gallery? rsirota SmugMug Customization 0 Mar-16-2010 05:44 PM
Gallery Settings page missing content & options; UNABLE to make changes to a gallery El D SmugMug Support 3 Mar-06-2010 04:44 PM
Customizing for Dummies - Chapter 5 Mike Lane SmugMug Customization 13 Apr-24-2009 11:08 AM
Backprinting @ smugmug K.Van SmugMug Support 62 Apr-05-2005 12:11 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