• Resolved Vakintis

    (@vakintis)


    I am using i-excel with wordpress 4.4.2.

    I need to change the green color of colorbar after below one menu item. When i try to change the line in the css files, the changes are not apply.

    The green color doesn’t fit with the logo of the site.

    Here is my website: https://logotherapeia-irakleio.gr/

    Thanks in advance!

Viewing 8 replies - 1 through 8 (of 8 total)
  • It looks like there are two css selectors effecting that element.

    .nav-container .current_page_item > a > span,
    .nav-container .current-menu-item > a span {
         background-color: #1a91b3; // change this to your liking
    }
    Thread Starter Vakintis

    (@vakintis)

    I try this (before asking and now) but nothing hapens. Something overlap it.

    If you want to be super verbose you can apply the entire selector.

    button, input[type="submit"],
    input[type="button"],
    input[type="reset"],
    .nav-container .current_page_item > a > span,
    .nav-container .current_page_ancestor > a > span,
    .nav-container .current-menu-item > a span,
    .nav-container .current-menu-ancestor > a > span,
    .nav-container li a:hover span {
            background-color: #1a91b3;
    }
    Thread Starter Vakintis

    (@vakintis)

    No success.

    I see from the mozilla inspector that it inherit the color from inline (index file) and not from the css file. I can’t find any other css file. How can i disable this?

    I read somewhere about child theme development and that you can change anything about styling. Do you thing that it will give me a solution?

    I see it now. The theme author is using a custom style sheet and displaying it by hooking into wp_head()

    In your theme look for the file iexcel-custom-style.php.

    On line 25 there is a variable $primary_color; Change that and you should be good to go.

    Thread Starter Vakintis

    (@vakintis)

    Thank you Justin!

    As an additional note, it’s best practice to create a child theme and copy that file into your child theme. Then make your adjustments there. That way your changes aren’t overwritten when the theme gets updated.

    Thread Starter Vakintis

    (@vakintis)

    Thank you again! You resolve my issue!

Viewing 8 replies - 1 through 8 (of 8 total)
  • The topic ‘Change color of colorbar (below menu item)’ is closed to new replies.