Menu color | Links | Navigation |

Hi @denson,

I hope you are well today and thank you for your question.

1. I would like to change button’s colors in MENU / Search / on bottom small Arrow that lead you to the TOP

You can try achieving this by adding the following CSS code in the Custom CSS option of your theme on the below path.

Admin Area -> Appearance -> Customize -> Shapely Options -> Other

a.btn.btn-sm.back-to-top {
    border-color: #a57a7a;
    background: #fff;
}
a.btn.btn-sm.back-to-top i:before {
    color: #000;
}
input#searchsubmit {
    background-color: #000;
    border-color: #000;
    color: #fff;
}

Please change the color value in the above code to whatever you want to use by referring the following pages.

http://www.w3schools.com/html/html_colorvalues.asp
http://www.w3schools.com/tags/ref_colorpicker.asp

2. Desktop sub-menu height problem after i changed few things to fit my logo (Part of https://colorlibsupport.com/t/nav-bar-height/#post-64580 ) Screenshot: http://www.level-of-details.com/wp-content/uploads/2016/07/Untitled-2.png

I have provided the solution in the following topic regarding this.

https://colorlibsupport.com/t/nav-bar-height/#post-64580

3. On Demo page i can see cool Navigation menu on top call out box – but on my page i dont have anything like this.

To display it on your site you have to install the following plugin and configure yoast breadcrumb in it.

4. Visited links on widgets, kategory names and title. Screenshot: http://www.level-of-details.com/wp-content/uploads/2016/07/Untitled-3.png

You can change those links colors by using following CSS code.


#page a:visited {
    color: #000;
}

Best Regards,
Movin