Viewing 6 posts - 1 through 6 (of 6 total)
  • Author
    Posts
  • #162812
    BrianBrian
    Participant

    Hi there,

    I would like to change the Higher Education background colours entirely to white. However, when I do this in the options the footer’s background colour remains in the default (#f5f5f5 I think). Could you provide me with the CSS code to change the footer background box colour to white as well?

    Thank you so much!

    B

    #162819
    Skandha
    Participant

    @brianbrian: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .site-footer {
         background-color:#fff !important;
    }

    Let me know if this does the trick!
    Kind Regards,
    Skandha

    #162820
    BrianBrian
    Participant

    Perfect, thanks Skandha!

    #162821
    Skandha
    Participant

    @brianbrian: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/higher-education/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that I can do to help, don’t hesitate to let me know. Have a good day! 🙂

    Kind Regards,
    Skandha

    #168968
    BrianBrian
    Participant

    Hi Skhanda, will do.

    Two more question:

    How do I change the colour of the blue line border in the drop down menu?

    How do I change the colour of the search box when normal and hovering?

    Thank you!

    B

    #169023
    Skandha
    Participant

    @brianbrian: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    /* To change the blue line border of drop down menu */
    .menu-item-has-children > .sub-menu, .page_item_has_children > .children {
           border-top:2px solid red !important;
    }
    /* To change color of search when normal and hovering */
    .search-submit:hover, .search-submit:focus {
           background-color:green !important;
    }
    .search-submit {
           background-color:red !important;
    }

    You can change the color according to your choice.
    Let me know if this is what you want.
    Kind Regards,
    Skandha

Viewing 6 posts - 1 through 6 (of 6 total)
  • The topic ‘Change footer background colour’ is closed to new replies.