Okay
  Public Ticket #3654143
How to change the color of dot navigation description
Closed

Comments

  • Vivien started the conversation

    Hi i tried to change the color of the dot navigation and the text next to it. But the text color doesnt change. What do i have to change?

    Attached files:  Screenshot 2024-05-24 111434.png

  •  2,958
    Andrew replied

    Hi Vivien,

    Thanks for writing to us.

    To make the changes as requested, you will need to add some custom CSS code. To do this, please follow these steps:

    From your WordPress dashboard, Navigate to Salient > General Settings > CSS/Script Related. In the custom code area, insert the provided CSS snippet:

    #fp-nav.transparent.tooltip_alt ul li .fp-tooltip .tooltip-inner, 
    #fp-nav.transparent:not(.light-controls) ul li .fp-tooltip .tooltip-inner {
      color: #fd5d3b!important;
    }
    #fp-nav.transparent.tooltip_alt ul li .fp-tooltip .tooltip-inner:after, 
    #fp-nav.transparent:not(.light-controls) ul li .fp-tooltip .tooltip-inner:after {
      border-color: #fd5d3b!important;
    }

    Once the code is added, save and refresh the page to see if the change has been applied. In case it helps, please check this section from the documentation on CSS/Script Related. If this does not work as expected or If you have any further questions or need additional assistance, don't hesitate to write back, I'm happy to help. 

    Regards,

  • Vivien replied

    Thanks a lot, that works perfectly!