claytiger, I would love to know how you changed the header of your site. (The one you add in orange where it has (Skype, social net work, email address etc). Good Job! You can Help me, if you share it please.
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
@timland, Please try your best not to take over someone else’s topic: https://ww.wp.xz.cn/support/theme/discover#postform
@claytiger, Do you still need help with this? You can use CSS to target different boxes, e.g. this will target the first:
.home #box_container .columns:nth-of-type(1) {
outline: 10px solid red;
}
This will target the second:
.home #box_container .columns:nth-of-type(1) {
outline: 10px solid red;
}
Then you can just append the elements you want to target, e.g.:
The heading:
.home #box_container .columns:nth-of-type(1) h1 {
outline: 10px solid red;
}
Andrew Nevins
(@anevins)
WCLDN 2018 Contributor | Volunteer support
If you’re not using a Child Theme, and if the theme doesn’t have a designated section of the dashboard for CSS modifications then install this Custom CSS Manager plugin http://ww.wp.xz.cn/plugins/custom-css-manager-plugin
Then use its “CSS Code” section of the dashboard to hold your CSS modifications
Alternatively use your Child Theme style.css file to hold your CSS modifications