How can I edit the background colour of 'follow' button in MH Magazine theme?
-
How can I edit the background colour of ‘follow’ button in MH Magazine theme, and change it from the current red to dark grey (with white letters) or light grey (with black letters)?
Kind regards
The blog I need help with is: (visible only to logged in users)
-
please check your other thread
The code in this case would be:
`
input[type=”submit”]:hover {
background: #cccccc;
color: black;
} -
-
thx for your input.
I tried the code, but the new colour only appears when you hover over it with the mice.
I would like it to have a black background with white letters (and not red with white letters as is the case now), before you hover over the icon.
Do you know the CSS code for that ?
-
You’re welcome.
If you want to change the colour of the button use this code:
input[type="submit"] { background: #000000; color: #FFFFFF; }You can use the previous :hover code to change the colour when a mouse over event happens, for color codes you can use http://www.w3schools.com/tags/ref_colorpicker.asp
Cheers
- The topic ‘How can I edit the background colour of 'follow' button in MH Magazine theme?’ is closed to new replies.