Hi,
Is it possible to create a link in team member names and occupations?
Thank you in advance!
Hi ijnavas,
Yes, it’s possible, you can put this inside Team Member Name or Team Member Job Title:
<a href="https://www.website.com/" target="_blank">Name/Title</a>
Just replace https://www.website.com/ and Name/Title.
You will see a warning when you add this, so make sure copy everything and only replace the parts mentioned.
Best regards,
Nikko
Done!
Thank you, Nikko!
One more thing. How if I want to change the hover color of the name/job?
Hi ijnavas,
You can add this CSS code in Enfold > General Styling > Quick CSS:
#top .team-member-name a:hover {
color: blue;
}
#top .team-member-job-title a:hover {
color: red;
}
Just change the colors as you see fit.
Best regards,
Nikko
Thank you, Nikko!
One more question. Colors can’t be set like this: #c01401?
Hi,
Yes, it’s possible, hex values are valid value, I just used color names for simplicity.
You can use this CSS code instead:
#top .team-member-name a:hover,
#top .team-member-job-title a:hover {
color: #c01401;
}
Best regards,
Nikko
Thank you!
But how to open it in the same page? It opens in a new window.
Hi ijnavas,
You just need to remove target=”_blank” from the previous code I gave:
<a href="https://www.website.com/" target="_blank">Name/Title</a>
Best regards,
Nikko
Oh, right!
Thank you!