• Resolved ashvin090

    (@ashvin090)


    Hello,

    I would love to know how to change the colours of the buttons. The prefered colour would be 9f005.

    Thank you!

    The page I need help with: [log in to see the link]

Viewing 4 replies - 1 through 4 (of 4 total)
  • sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Hi there, there are 6 digits/characters in a hex color code, so the above color code will not work. There are a lot of buttons in this theme, and the following will cover the majority of them, at least on your main page. I’ve included both non-hover and hover CSS rules for each in case you wish to change both.

    .button {
    	background-color: green !important;
    	border-color: yellow;
    }
    .button:hover {
    	background-color: grey !important;
    	border-color: white;
    }
    .minimal.button {
    	background-color: purple !important;
    	border-color: orange;
    }
    .minimal.button:hover {
    	background-color: yellow !important;
    	border-color: magenta;
    }
    input.pushbutton-wide {
    	background-color: darkblue;
    	border-color: orangered;
    }
    input.pushbutton-wide:hover {
    	background-color: blueviolet;
    	border-color: yellow;
    }
    Thread Starter ashvin090

    (@ashvin090)

    Thank you! It does help.

    Also do you know how to change the colour of the icons such as facebook in https://newlabelsmarketing.com/#post-46 to another?

    Thank you!!

    Thread Starter ashvin090

    (@ashvin090)

    Sorted Thank you!

    sacredpath

    (@sacredpath)

    Automattic Happiness Engineer

    Awesome, and you are welcome!

Viewing 4 replies - 1 through 4 (of 4 total)
  • The topic ‘How to change colour of buttons’ is closed to new replies.