So, I was given the task of editing a website. It was done in PHP for the most part.
If you visit the page http://cre-finance.com/?Contact-Us, I’m attempting to edit the contact info at the bottom but I have no idea where to find it in the website files. If you the view the source, it’s right there like it’s taunting me but none of the php files have that info in it. There is a contactus.php (code below) but all it has is the code for the form at the bottom of the Contact Us page.
I’ve noticed references to “?p=Contact-Us” in the source, and also in the sitemap.xml file but I have no idea what that really means because there are no other “contactus” pages other than the one I mentioned above. I guess I’m not really looking for help with actual coding but perhaps to be pointed in the right direction to edit that information.
HELP!
[code]<!doctype html>
Untitled Document /***** form styles *******/ form { width:100%; }#form_row {
clear:left;
}
#form_row input{
width:100%;
}
#form_col {
float:left;
vertical-align:top;
width:45%;
}
#form_col input{
width:90%;
}
#form_textbox textarea{
width:100%;
height:150px;
}
/***** end form styles ******/
@media screen and (max-width:768px){
form {
width:100%;
}
#form_row {
clear:left;
}
#form_row input{
width:100%;
}
#form_col {
float:none;
vertical-align:top;
width:100%;
}
#form_col input{
width:100%;
}
#form_textbox textarea{
width:100%;
height:150px;
}
}
@media screen and (max-width:480px){
form {
width:100%;
}
#form_row {
clear:left;
}
#form_row input{
width:100%;
}
#form_col {
float:none;
vertical-align:top;
width:100%;
}
#form_col input{
width:100%;
}
#form_textbox textarea{
width:100%;
height:150px;
}
}
*Required