- This topic has 2 replies, 3 voices, and was last updated 6 years, 3 months ago by thijsvandongen.
- AuthorPosts
- February 20, 2018 at 12:13 am #4712zachosParticipant
Hello all,
How i can change the main color (#EE3B24;) of the icons in the feature section
(Our Features)?Can i change only this color (#EE3B24;) in all site?
Please advice
March 12, 2018 at 11:53 pm #4767HashKeymasterYes, you can do it by making change in style.css code file but the theme does not have any prebuilt color picker.
August 3, 2018 at 8:58 pm #7356thijsvandongenParticipantYou can do a replace for all #EE3B24 in the css.style.
But I use a variable in the beginning of the style.css and use that variable for all the places were #EE3B24 was used.Next time I only have to change the color on 1 place in the style.css.
So set the variable –main-color
:root {
–main-color: rgb(80, 177, 56);
}
en dan overal
input[type=”submit”] {
background: var(–main-color);
padding: 0 20px;
color: #FFF;
border: 0;
line-height: 46px;
height: 46px;
}
- AuthorPosts
- You must be logged in to reply to this topic.