View Full Version : Changing Colors?
I've tried a bunch of stuff to get a solution for this, but I can't figure it out and I can't find further information on it.
How do I get the "next" link above an image to show up in white.
Thanks, Jim
Here is my stylesheet code:
Body { background-color: #696969 }
body { color: #FFFFFF; }
.blue { color: #FFFFFF; }
.offshadowbg { background-color: #404040; }
.offgray { color: #FFFFFF; }
.offblue { color: #FFFFFF; }
.headmd { color: #FFFFFF; }
a { color: #FFFFFF; }
a:visited { color: #FFFFFF; }
a:hover { color: #FFFFFF; }
a:hover:visited { color: #FFFFFF; }
.smborder {
border: 0px solid #000000;
}
.smborderoff {
border: 0px solid #999999;
}
lynnma
Aug-19-2005, 05:18 AM
I've tried a bunch of stuff to get a solution for this, but I can't figure it out and I can't find further information on it.
How do I get the "next" link above an image to show up in white.
Thanks, Jim
Here is my stylesheet code:
Body { background-color: #696969 }
body { color: #FFFFFF; }
.blue { color: #FFFFFF; }
.offshadowbg { background-color: #404040; }
.offgray { color: #FFFFFF; }
.offblue { color: #FFFFFF; }
.headmd { color: #FFFFFF; }
a { color: #FFFFFF; }
a:visited { color: #FFFFFF; }
a:hover { color: #FFFFFF; }
a:hover:visited { color: #FFFFFF; }
.smborder {
border: 0px solid #000000;
}
.smborderoff {
border: 0px solid #999999;
}Hi Jim.. I'm rounding up the code troops now.. stand by :thumb
{JT}
Aug-19-2005, 11:45 AM
Hm, it should be showing up in white as long as there is an actual next image to go to. Can you send a link to the page in question as well as saying what gallery template you are viewing it in?
Hi Jim.. I'm rounding up the code troops now.. stand by :thumbThanks Lynnma! I've tried just about everything but I've probably missed something obvious.
The "next" link will stay white once it has been clicked, but before you click it is a dark purple color which makes it very hard to see against my background.
I do wish that I could find more detailed instructions about the coding for Smugmug.
Hi {JT}
I just saw your post. I'm not certain what you mean by gallery template, but I think the one I'm using for this is "All Thumbs".
Here is a link to the gallery.
http://jamespopephotography.smugmug.com/gallery/600201
I appreciate the help!
{JT}
Aug-19-2005, 11:58 AM
.photoNav a {
color: white;
}
Hi {JT}
I just saw your post. I'm not certain what you mean by gallery template, but I think the one I'm using for this is "All Thumbs".
Here is a link to the gallery.
http://jamespopephotography.smugmug.com/gallery/600201
I appreciate the help!
.photoNav a {
color: white;
}Wow that's great {JT}! Thanks very much. :thumb
Any thoughts on how to change the blue color where it says "3 of 97"?
Also, short of hiring you as my personal consultant, is there anywhere else that I can find this information? I don't like to keep bothering people with questions if I can just research it.
Thanks again!
{JT}
Aug-19-2005, 01:05 PM
.photoNav .title {
color: red;
}
Right now the design is a bit fluid, I may change some of it again today so I have held off on writing any specific documentation until after the user homepages are done. But, don't plan on the documentation covering every little thing you can do to the page, there is simply too much you can control. My best suggestion is to learn how CSS works a little, then look at my example code and it should all snap in to place.
Wow that's great {JT}! Thanks very much. :thumb
Any thoughts on how to change the blue color where it says "3 of 97"?
Also, short of hiring you as my personal consultant, is there anywhere else that I can find this information? I don't like to keep bothering people with questions if I can just research it.
Thanks again!
.photoNav .title {
color: red;
}
Right now the design is a bit fluid, I may change some of it again today so I have held off on writing any specific documentation until after the user homepages are done. But, don't plan on the documentation covering every little thing you can do to the page, there is simply too much you can control. My best suggestion is to learn how CSS works a little, then look at my example code and it should all snap in to place.Thanks again {JT}.
Could someone also tell me how to change the color of the page numbers in the Smugmug gallery style? They are dark and hard to see so I want them to be white as well.
Is the example code you are referring to part of the tutorial? I've studied the tutorial, but I can't find this stuff in there. I will read up more on CSS.
Thanks again {JT}.
Could someone also tell me how to change the color of the page numbers in the Smugmug gallery style? They are dark and hard to see so I want them to be white as well.
Is the example code you are referring to part of the tutorial? I've studied the tutorial, but I can't find this stuff in there. I will read up more on CSS.Anyone please? Thanks.
bigwebguy
Aug-23-2005, 10:44 AM
Anyone please? Thanks.
#breadcrumb .nav {
color: white;
}
#breadcrumb .nav {
color: white;
}Thanks for the reply. Unfortunately, it doesn't seem to be working for me. The page numbers are still dark.
Mike Lane
Aug-23-2005, 12:37 PM
#breadcrumb .nav {
color: white;
}
The breadcrumb is what is at the very top of the page i.e. username > categoryname > galleryname not the page nav. Use this instead:
.leftColumn a.nav {
color:white;
}
And of course you can replace the word "white" with any rgb hex value too (e.g. #ff0000 for red).
The breadcrumb is what is at the very top of the page i.e. username > categoryname > galleryname not the page nav. Use this instead:
.leftColumn a.nav {
color:white;
}
And of course you can replace the word "white" with any rgb hex value too (e.g. #ff0000 for red).Thanks Mike. That worked great. I'll now ask my standard question of whether there is anyplace where this information is available for me to look up? I tried searching here, but I didn't even know what to call it.
Mike Lane
Aug-23-2005, 12:57 PM
Thanks Mike. That worked great. I'll now ask my standard question of whether there is anyplace where this information is available for me to look up? I tried searching here, but I didn't even know what to call it.
No not yet, they're still busy working on the rollout of everything. I think there is still plenty of time for a bit of shifting of the various elements. I would expect this to be complete after all the changes to the galleries and the home pages have been completed.
They have stated several times that this is something that'll happen eventually so hang tight and in the mean time check out various sites' css to see what they have done. Or if you're using firefox check out the web developer toolbar extension.
bigwebguy
Aug-23-2005, 01:56 PM
Thanks for the reply. Unfortunately, it doesn't seem to be working for me. The page numbers are still dark.
haha, i went to your page and the first thing i saw was the dark breadcrumb and figured that was what needed fixin'.
helps to read sometimes.
haha, i went to your page and the first thing i saw was the dark breadcrumb and figured that was what needed fixin'.
helps to read sometimes.No problem. I appreciate everyone's help!
Back to the drawing board again!
Could someone also tell me how to change the color of the page numbers in the Traditional gallery style? They are dark and hard to see so I want them to be white as well.
I thought that changing them for the Smugmug style would also cause these to change but obviously not.
Mike Lane
Aug-24-2005, 01:15 PM
Back to the drawing board again!
Could someone also tell me how to change the color of the page numbers in the Traditional gallery style? They are dark and hard to see so I want them to be white as well.
I thought that changing them for the Smugmug style would also cause these to change but obviously not.
Your questions are answered here (http://www.dgrin.com/showthread.php?p=153109#post153109).
Your questions are answered here (http://www.dgrin.com/showthread.php?p=153109#post153109).That is a great thread Mike. Thanks for setting it up.
Mike Lane
Aug-24-2005, 01:34 PM
That is a great thread Mike. Thanks for setting it up.
No problemo. Hopefully that answered your questions.
vBulletin v3.5.2, Copyright ©2000-2008, Jelsoft Enterprises Ltd.