This topic has 4 replies, 2 voices, and was last updated 6 years, 2 months ago ago by Rose Tyler
Hello,
I need to change the color of the link text from the text of the paragraph because it does not stand out (http://prntscr.com/ksn5ac).
I tried to change the general rule
a {
text-decoration: none;
cursor: pointer;
color: # 1e1e1e;
-webkit-transition: all 0.2s linear;
transition: all 0.2s linear;
}
a: hover {
text-decoration: none;
outline: none;
color: # 8a8a8a;
}
a: focus {
text-decoration: none;
outline: none;
color: # 8a8a8a;
}
but force the color change also in the menu, the links of the footer, etc …
Which rule should I use?
I also have a problem modifying the color of the fixed menu item of the active page (http://prntscr.com/ksn8e0)
From the theme settings I can not change it (http://prntscr.com/ksn97u), I have set the color white but it is not displayed.
Greetings,
Dario
Hello,
1. Please provide us with the page URL.
2. Provide us with temporary wp-admin access.
Regards
Hello,
find the page link and temporary access to the site in the private area.
Greetings,
Dario
Hello,
1. You can add this code in Custom css for page:
.mpc-accordion-item__content p a {
color: black;
}
http://prntscr.com/kspfqc
2. Global custom css:
.fixed-header .menu-wrapper .menu > li.current-menu-item > a {
color: #ffffff !important;
}
Regards
You must be logged in to reply to this topic.Log in/Sign up