Forum Replies Created

Viewing 3 replies - 1 through 3 (of 3 total)
  • Thread Starter bloom20

    (@bloom20)

    when looking at inspect element in chrome i get the following result

    media="screen"
    .main-navigation a {
        color: #CCC;
    }

    on the other hand i have set the text color to FFF now as shown below, i guess the problem is in @media but what is overruling my preferred color setting?

    media="all"
    .main-navigation a {
        color: #FFF;
        display: block;
        font-size: 1.1rem;
        font-size: 11px;
        font-weight: normal;
        margin-right: 1em;
        text-decoration: none;
        text-transform: uppercase;
        padding: 0.2em 0.8em;
    }
    Thread Starter bloom20

    (@bloom20)

    i’ve tried to change every main-navigation a { i can find that has some kind of color or background code to ff0000, choosed red to see the difference but nothing has changed on any of the following that is found under

    /* =Menu
    ———————————————– */

    .main-navigation a {
    	color: #ff0000;
    .main-navigation ul ul {
    	background: #ff0000;
    .main-navigation li:hover > a,
    .main-navigation li.current_page_item a,
    .main-navigation li.current-menu-item a {
    	color: #697877; /* this is the text color in the active hover box */
    	display: block;
    	background-color: #ff0000;
    	border-radius: 0.2em;
    .main-navigation ul ul a:hover {
    	color: #ff0000;
    	display: block;
    	background-color: #ff0000;
    	border-radius: 0;
    .main-navigation ul ul ul a:hover {
    	color: #ff0000;
    	display: block;
    	background-color: #ff0000;
    	border-radius: 0;

    old topic but since im new to the theme and i had the same problem as you i found it in the header.php

    <h1 class=”assistive-text”><?php _e( ‘menu‘, ‘adamos’ ); ?></h1>

    just change menu to whatever you would like to be.

Viewing 3 replies - 1 through 3 (of 3 total)