Thank you very much for your help Laza, that works well.
Basically I'm trying to get consistent text colors on a Tiger page with folder name text with image count, Hero text, and image count text in the footer easily programmable and able to (in many cases) match each other. I'm struggling with this.
- If I take the included Tiger Sample Project and make "Text color" bright red and "Link color" bright green, instead I get a mix of red and white (pink) on all text except Hero text (stays white) and a mix of green and white on my bottom link. (samp1 picture)
- If I then try to make "Text color" black then all text (except Hero) becomes grey, even if I make boxes background light. (samp2 picture)
- I now see that if I make the "Background color" bright and "Text color" white, Folder text actually becomes black, however image count text in the footer stays light. (samp3 picture)
So what I observe is:
- Hero text color is set separately from all other text color. I think I can use this CSS to set it by hand which seems to work:
.hero header .description { color: #222222 }
.hero header h1 { color: #222222 }
- There appears to be an algorithm that keeps Folder text either lighter or darker that is opposite of "Background color", and setting "Text color" can influence it a bit in some cases.
- Same thing for Footer text, it seems to be somewhat automatically set by the color "Footer". This also includes the "Return Back" link I added.
On my own albums I have a case with darker background, box and footer colours and the folder text appears bright white and I can't lower its brightness. (samp4 picture) Note here I also used this CSS to remove the black gradient behind Hero:
.hero header .title { background: none; }
Any suggestions you can give to help me better control the various text colours would be greatly appreciated.
One other question: inside my folder pages I'm getting the "Top bar" added but I want to disable it since I am trying to disable all buttons there. (samp5 picture) I think it might be doing this because in your "top-bar.inc" code I see a variable "hasHomeBtn" which is set True if variable "level" > 0. (I think level may reflect the setting here in the GUI: Settings - Tiger - Site - Top bar - Depth, and I cannot set that to 0, it keeps resetting to 1.) But if you can suggest the best way to disable the Top bar then that would be great.
Thank you again, I appreciate your time.