Author Topic: Can I change the background color of only certain specific people?  (Read 2524 times)

0 Members and 1 Guest are viewing this topic.

Offline Graziano

  • VIP
  • Jr. Member
  • *
  • Posts: 14
    • View Profile
Person's card:
can I change the background color of only certain specific people selected by me? How?

Online Zurga

  • VIP
  • Supernatural Member
  • *
  • Posts: 3 931
    • View Profile
Re: Can I change the background color of only certain specific people?
« Reply #1 on: November 15, 2023, 18:07:40 »
No, you can't.

Zurga

Offline Graziano

  • VIP
  • Jr. Member
  • *
  • Posts: 14
    • View Profile
Re: Can I change the background color of only certain specific people?
« Reply #2 on: November 15, 2023, 18:11:15 »
Thanks Zurga for all your answers!

Offline fred_76

  • VIP
  • Full Member
  • *
  • Posts: 42
    • View Profile
Re: Can I change the background color of only certain specific people?
« Reply #3 on: December 06, 2023, 12:01:04 »
Effectively, you can't, and even in the source code of Ancestris, it would be very difficult to implement this (because the Java source is overly complex with deeply intricated routines).

There is an alternative. Using the calcs setting for the display of Individuals (little man icon on the top right corner of the Dynamic tree view).

For example, I want to flag the persons that are my direct ancestors. I'm using the <mark path=INDI:_SOSA> tag. The font color property controls the color of the mark (here it is red) :

Code: [Select]
<font color=#f00><mark path=INDI:_SOSA></font>
<i><b><prop path=INDI:_SOSA><b></i>
<b><prop path=INDI:NAME:SURN></b>
<br><prop path=INDI:NAME:GIVN>&nbsp;
<i><prop path=INDI:TITL></i>
<br>o&nbsp;<prop path=INDI:BIRT:DATE>&nbsp;<prop path=INDI:CHR:DATE> <prop path=INDI:BIRT:PLAC format="">
<br>+&nbsp;<prop path=INDI:DEAT:DATE>&nbsp;<prop path=INDI:DEAT:PLAC format="">

So that I can quickly see where they are in the tree, with this red mark.

Fred




« Last Edit: December 06, 2023, 12:04:31 by fred_76 »

Offline Graziano

  • VIP
  • Jr. Member
  • *
  • Posts: 14
    • View Profile
Re: Can I change the background color of only certain specific people?
« Reply #4 on: December 18, 2023, 10:14:50 »
thank you!