Viewing 10 posts - 1 through 10 (of 10 total)
  • Author
    Posts
  • #1419763

    Hi,

    Is it possible to create a link in team member names and occupations?

    Thank you in advance!

    #1419790

    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

    #1419924

    Done!

    Thank you, Nikko!
    One more thing. How if I want to change the hover color of the name/job?

    #1419971

    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

    #1420067

    Thank you, Nikko!

    One more question. Colors can’t be set like this: #c01401?

    #1420112

    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

    #1420307

    Thank you!

    But how to open it in the same page? It opens in a new window.

    • This reply was modified 1 year, 1 month ago by ijnavas.
    #1420386

    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

    #1420437

    Oh, right!
    Thank you!

    #1420472

    Hi,

    Thanks for the update. Please let us know if you should need any further help on the topic, or if we can close it.

    Best regards,
    Rikard

Viewing 10 posts - 1 through 10 (of 10 total)
  • You must be logged in to reply to this topic.