• Resolved benedictec

    (@benedictec)


    Hi everyone!

    I am currently struggling to change my header menu color on this website: lannabeachguesthouse.com

    So in my CSS, I changed on the line 1170 the background to the wanted colour but nothing happened. Then , there’s a whole list of coding after that and I am wondering if I have to change it as well:

    [Excessive code removed – it’s all visible on your site anyway – no need to post CSS code]

    Thank you very much for your help! 🙂

Viewing 5 replies - 1 through 5 (of 5 total)
  • You should not be modifying any theme files – as your changes will be lost when the theme is updated. Any changes should be made in a child theme or you can make them in the Custom CSS option in the theme.

    Try ADDING this to custom CSS and yes, changing all the color codes to what you want:

    .menu {
      background-color: #xxxxxx;
      background-image: -webkit-gradient(linear, left top, left bottom, from(#585858), to(#3d3d3d));
      background-image: -webkit-linear-gradient(top, #585858, #3d3d3d);
      background-image: -moz-linear-gradient(top, #585858, #3d3d3d);
      background-image: -ms-linear-gradient(top, #585858, #3d3d3d);
      background-image: -o-linear-gradient(top, #585858, #3d3d3d);
      background-image: linear-gradient(top, #585858, #3d3d3d);
      clear: both;
      filter: progid:DXImageTransform.Microsoft.gradient(startColorstr=#585858, endColorstr=#3d3d3d);
      margin: 0 auto;
    }

    Thread Starter benedictec

    (@benedictec)

    Yeah!!! It worked! Fantastic!
    Thank you very much for your help 🙂

    I will look then at how to create a child theme 😉

    Hi there, I’m struggling with the same issue – and I’ve tried all the alterations suggested on the customer CSS. But nothing works. Please help.

    Website is wwww.mageehealthandfitness.co.uk

    One more unable to change header menu color using this custom css (obviously changin color codes).

    I even tried a simple change:

    .menu {
    background-color: #FF0000;
    background-image: none;
    }

    And nothing happened 🙁

    Ok, my mistake. You have to put this code on CSS Style from Appearance > Theme Options, not the usual Appearance > Editor

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

The topic ‘Responsive Theme – How to change header menu color?’ is closed to new replies.