Hi. I want to make the horizontal menu complete and the vertical menu without background color. Because I eliminate the color and he still sees another color. This happens even though I eliminate the general theme background color.

Hi. I want to make the horizontal menu complete and the vertical menu without background color. Because I eliminate the color and he still sees another color. This happens even though I eliminate the general theme background color.

Hello There,
To assist you with this issue, we’ll first need you to provide us with your URL. This is to ensure that we can provide you with a tailored answer to your situation. Once you have provided us with your URL, we will be happy to assist you with everything.
Thank you in advance.
I find a metod for hide the background. Now I want to find out how the color of the menu stands out when I navigate from div 1 (id = 1) to div 2 (id = 2). Like in your page https://theme.co/x/

Hey There,
https://theme.co/x/ is using One page navigation set up. This feature is only present in the default navbar. It is not something that is present when you create a custom header. You may need to add a custom JS and CSS for what you have in mind. Please do the following:
my-button in the 1 and 2 button links.(function($){
$('.my-button').on('click touchstart', function(){
$('.my-button').removeClass('active');
$(this).addClass('active');
});
})(jQuery);
.my-button.active {
background-color: green !important;
}
.my-button.active .x-anchor-text-primary{
color: red !important;
}
Hope this helps.
This topic was automatically closed 10 days after the last reply. New replies are no longer allowed.