I could not change the basic colors in the theme even after trying for a long time. I would like to change the colors for <p></p>, , <i></i> and <h1></h1>. How can I do this without much programming knowledge.
You can change the font by means of the Advanced typography option, which allows you to choose the item from a drop-down or insert your custom CSS class. Please navigate to the Theme Settings > Typography > Advanced Typography.
You can change the font by means of the Advanced typography option, which allows you to choose the item from a drop-down or insert your custom CSS class. Please navigate to the Theme Settings > Typography > Advanced Typography.
Thank you for the answer. Now I know how to change the font in the head. However, the settings do not work for the footer. I have written HTML code and can’t set a default for <p></p>, <i></i> and <h1></h1>.
Please add this code to the Theme Settings > Custom CSS > Global:
.main-footer .textwidget ul li a{
color:white;
}
.main-footer .textwidget ul li a:hover{
color:yellow;
}
body .main-footer .textwidget h4{
color:white;
}
.min-footer a,
.min-footer i,
.min-footer small{
color:white;
}