We build. You grow.

Get best community software here

Start a social network, a fan-site, an education project with oxwall - free opensource community software

Theme Crayon change menu color and hover color | Forum

Topic location: Forum home » Support » General Questions
Jeroen van Dijk
Jeroen van Dijk Jul 15 '15

How can i change the menu link color pink to something else? And also when you hover the link color?


I cant find it any where what the custum css code is?!


I use the Crayon theme!


Thanks!



The Forum post is edited by Jeroen van Dijk Jul 15 '15
Jeroen van Dijk
Jeroen van Dijk Jul 15 '15

i have already found it.


In the menu section you will find the code to change.


For people that need help to? Let me know :-)

ross Team
ross Jul 15 '15
Jeroen, you can just write the solution here, people will do the search and it will useful for them as you're not going to be online like all the time, thank you in advance. 
Jeroen van Dijk
Jeroen van Dijk Jul 16 '15

Of course :-)


This code found in the menu section in the css file. Edit this and you can change the color.


<This part is for the main menu colorlettertype>


.ow_main_menu li a {
    color: #your color; /** OW_Control type:color, key:menuColor, section:2. Colors, label:Menu text color **/
    display: inline-block;
        font-size: 13px;
    padding: 2px 8px 6px 8px;
    text-decoration: none;
        text-transform: uppercase;
        text-shadow: #fff 0 1px 0;
        font-weight: normal;


<This part is for the link hover color in the main menu>


.ow_main_menu li.active a {
}

.ow_main_menu li.active a,
.ow_main_menu li a:hover {
        color: #your color; /** OW_Control key: titleColor **/
        text-shadow: #fff 0 1px 0;





ross Team
ross Jul 16 '15
Thanks