PDA

View Full Version : Font Question


Kat28
Jan-25-2009, 11:53 AM
I promise... I've been searching the forum for a few hours now with no luck, so I'm afraid I have to bug ya =}
What's up with the lime green font on my pages? I just want to make alllll of the lime green font this color: #6B532E
I want this to apply to all the pages... even new ones I add later on if possible.

Page examples where the green font shows:
http://www.photographybykatbenson.com/gallery/6956185_h8bYL
http://www.photographybykatbenson.com/gallery/7105690_JK6qJ
http://www.photographybykatbenson.com/gallery/7079031_bnDkj

Thanks!

J Allen
Jan-25-2009, 12:36 PM
This might get it all:

.title {color: #6B532E!important;}

Mosser
Jan-25-2009, 12:53 PM
I promise... I've been searching the forum for a few hours now with no luck, so I'm afraid I have to bug ya =}
What's up with the lime green font on my pages? I just want to make alllll of the lime green font this color: #6B532E
I want this to apply to all the pages... even new ones I add later on if possible.

Page examples where the green font shows:
http://www.photographybykatbenson.com/gallery/6956185_h8bYL
http://www.photographybykatbenson.com/gallery/7105690_JK6qJ
http://www.photographybykatbenson.com/gallery/7079031_bnDkj

Thanks!


Hey Kat, I had the same problem. See the recent thread, "Homepage done, how do I edit subpages?" The answer is in there!!

J Allen
Jan-25-2009, 12:55 PM
Some other things that will clean up your guestbook page, pricing page, and my favorite:oogle , your bio page. It will also prevent clicking of those pictures.

.gallery_6956185 .pageNav,
.gallery_6956185 #breadcrumb,
.gallery_6956185 #albumNav_top,
.gallery_6956185 #albumNav_bottom
{display: none;}
.gallery_6956185 #journal img.imgBorder,
.gallery_6956185 #journal img.imgBorderOn
{border-width: 0px;}
.gallery_6956185 #journal .photo.right
{cursor: auto;}
.gallery_6956185 #journal .photo a
{cursor: auto;}
.gallery_6956185 #journal .photo img
{cursor: auto;}
.gallery_6956185 .journal_entry {border: none;}

.gallery_7105690 .pageNav,
.gallery_7105690 #breadcrumb,
.gallery_7105690 #albumNav_top,
.gallery_7105690 #albumNav_bottom
{display: none;}
.gallery_7105690 #journal img.imgBorder,
.gallery_7105690 #journal img.imgBorderOn
{border-width: 0px;}
.gallery_7105690 #journal .photo.right
{cursor: auto;}
.gallery_7105690 #journal .photo a
{cursor: auto;}
.gallery_7105690 #journal .photo img
{cursor: auto;}
.gallery_7105690 .journal_entry {border: none;}

.gallery_7079031 .pageNav,
.gallery_7079031 #breadcrumb,
.gallery_7079031 #albumNav_top,
.gallery_7079031 #albumNav_bottom
{display: none;}
.gallery_7079031 #journal img.imgBorder,
.gallery_7079031 #journal img.imgBorderOn
{border-width: 0px;}
.gallery_7079031 #journal .photo.right
{cursor: auto;}
.gallery_7079031 #journal .photo a
{cursor: auto;}
.gallery_7079031 #journal .photo img
{cursor: auto;}
.gallery_7079031 .journal_entry {border: none;}

Add this to your top java script:

function delHover()
{
imgTags = document.getElementsByTagName("img");
for (i=0; i<imgTags.length; i++)
{
imgTags[i].title = "";
imgTags[i].alt = "";
}
}

function noClick()
{
if (window.AlbumID && (window.AlbumID == "6956185" || window.AlbumID == "7105690"|| window.AlbumID == "7079031"))
removeLinkFromImg();
}

function removeLinkFromImg()
{
var links = document.getElementsByTagName("A");
for (var i = 0; i < links.length; i++)
{
var link = links[i];
var divElm = link.parentNode;
if (!divElm)
continue;
divElm = divElm.parentNode;
if (!divElm)
continue;
if (divElm.className.indexOf("photo")<0)
continue;
link.href = "javascript:void(0);";
}
}

jfriend
Jan-25-2009, 01:45 PM
I promise... I've been searching the forum for a few hours now with no luck, so I'm afraid I have to bug ya =}
What's up with the lime green font on my pages? I just want to make alllll of the lime green font this color: #6B532E
I want this to apply to all the pages... even new ones I add later on if possible.

Page examples where the green font shows:
http://www.photographybykatbenson.com/gallery/6956185_h8bYL
http://www.photographybykatbenson.com/gallery/7105690_JK6qJ
http://www.photographybykatbenson.com/gallery/7079031_bnDkj

Thanks! I'll offer the same answer I always start with. Have you tried picking a theme that doesn't use green text. That will get rid of all the green at once. Try a couple of the Smug themes. You can even change the theme for your whole site at once in the control panel.

Kat28
Jan-25-2009, 05:09 PM
Thanks for the replies. I'll give them a shot. I definitely dont want to use a SmugMug theme. I need to keep my signature style. Otherwise, I wouldn't be spending all this money to have my page if I just used a template theme available to everyone.

jfriend
Jan-25-2009, 05:36 PM
Thanks for the replies. I'll give them a shot. I definitely dont want to use a SmugMug theme. I need to keep my signature style. Otherwise, I wouldn't be spending all this money to have my page if I just used a template theme available to everyone. The point is you can switch to gradient gray that is plain, but doesn't use green. I'm not talking about something with flowers. I'm just talking about a better starting point for your customization. When you don't want green, why start with a default theme that has green.

AspectArts
Jan-25-2009, 10:44 PM
This might get it all:

.title {color: #6B532E!important;}

This one sounded the easiest, so I tried it first. Perfect! Thanks!:clap

Kat28
Jan-26-2009, 01:21 PM
Worked for me, too! =)
This one sounded the easiest, so I tried it first. Perfect! Thanks!:clap