Hi,
My code was placed in Appearance > Theme > customize> Additional CSS.
And it was for the colors of the buttons, to have a drop down menu, to have a Read More button on home page and so on…
What should I do with this code? Should I place it again in the child theme in the same place?
From now on I should make all the customizations in the child theme?
Is it ok for my site to do so?
Thanks for responding so quickly!
Regards,
Adriana
PS : My code until now
is here below :
*/
/Heading color/
h1, h2, h3, h4, h5, h6, .h1, .h2, .h3, .h4, .h5, .h6 {
color: #855aa5;
}
/Change active and hover color/ ul.dropdown-menu {
background-color: #3A3A3A;
}
.dropdown-menu > li > a {
color: #fff;
}
#page .dropdown-menu a:hover {
background-color: transparent !important;
color: #855aa5 !important;
}
body.home a.more-link {
display: block;
color: #855aa5;
}
body.home a.more-link {
font-size: 0;
}
body.home a.more-link:before {
content: “Read More”;
display: block;
float: right;
margin-top: 10px;
font-size: 12px;
padding: 11px 13px;
background-color: #855aa5;
border-color: #855aa5;
color: #FFF;
text-transform: uppercase;
border-radius: 4px;
}