Viewing 7 posts - 1 through 7 (of 7 total)
  • Author
    Posts
  • #310950
    Anouk Hospes
    Participant

    Hi,

    Site isn’t live yet, so I can’t post the url.

    I have 2 questions. Hopefully you can help.

    1. I want to remove the link of the team members. So no link when clicking on the image of the team members.
    2. Can I change the menu colour? And how? It is now light grey and when hoover it is white.

     

    Thank you!

     

    #310958
    tikaram
    Keymaster

    @anoukhospes : To remove the link of team members : Select Team type as custom.
    In the link field you may insert # and enter other details and publish.

    To change the menu color : Login to your WordPress admin section.
    Go to Appearance => Customize => Colors

    Locate and change Header Text color: This will work if header media is disabled.

    Locate and change Header Text Color With Header Media: This will work if header media is enabled.

    Let me know if this helps to resolve your issue

    Regards,
    Tikaram

     

    #310973
    Anouk Hospes
    Participant

    Thank you for your reply.

    Unfortunately, both answers don’t work.

    1. When I place a # in the link field, the image of the team members link to http://www.websiteaddress.com/#
    2. Header media is enabled. But the current selected colour at “Header Text Color With Header Media” is now white. But the menu colour is in fact light grey and when hoover it is white.
    #310977
    tikaram
    Keymaster

    @anoukhospes : To remove the link of team members : Login to your WordPress admin section. Go to Appearance => Customize => Additional css and add the following css.

    #team-content-section article {
      pointer-events: none;
    }

    To change the menu color please add the following additional css

    @media screen and (min-width: 75em)  {
      /* Menu Color */
      .navigation-classic.absolute-header .main-navigation a {
        color: #color-code;
      }
      /* Menu Hover and Active Color */
      .navigation-classic.absolute-header .main-navigation ul :hover > a,
      .navigation-classic.absolute-header .main-navigation ul .focus > a,
      .navigation-classic.absolute-header .main-navigation .menu > .current-menu-item > a,
      .navigation-classic.absolute-header .main-navigation .menu > .current-menu-ancestor > a,
      .navigation-classic.absolute-header .dropdown-toggle {
        color: #color-code;
      }
    }

     

    Note: Replace the #color-code with the desired color-code which you can easily find searching on the web. You will need to insert the correct color-code to get desired color.

    Regards,
    Tikaram

    #310980
    Anouk Hospes
    Participant

    Thank you!

    Both issues are fixed now.

    #311026
    Anouk Hospes
    Participant

    Another question.

    How can I remove the links by the events section (the link on the right image) and the testiomonial section? (the link on the image left next to the text)

    Thank you!

    #311046
    tikaram
    Keymaster

    @anoukhospes :Please try adding the following additional css

    #events-section .main-image,
    #testimonial-content-section .post-thumbnail {
        pointer-events: none;
    }
    
    

    Regards, Tikaram

Viewing 7 posts - 1 through 7 (of 7 total)
  • The topic ‘2 questions’ is closed to new replies.