我有问题造型wordpress联系页面

Please I'm having issues styling the contact page . I'll love to change Address, email and phone number colours to white. See Screenshot,

enter image description here

I've tried inspecting element, but can't find the actual file to modify.

You can't find the file is because it's in-between script tags. Can you not do it using the WYSIWYG controls?

If you want to do it with CSS, put the following in your theme's custom.css or your child themes styles.css (Or if your theme has theme options, it may be in there):

.page-template-contact .info-strip .info-block p,
.page-template-contact .info-strip .info-block a {
    color: #fff !important;
}

This will apply it only to those blocks on the contact page. The important also prevents it being overridden by inline CSS added by WYSIWYG editors, so bare this in mind when you want to change it 2 months down the line :)

.page-template-contact .info-strip .info-block p,
.page-template-contact .info-strip .info-block a {
    color: #fff !important;
}

Would you please add above code in your style.css ?