Forum replies created
Would need to have a look at the backend. Can you please provide your email where I can contact you for the login details.
You can create a test account at http://test.theme4press.com/ and then check out how the various pages are laid out.
Seems some css selectors are taking precedence over the .phone-number class.
Try the following css and let me know if it works.
div#wrapper > div.header-wrapper > div.header-v3 > div.header-social > div.alora-row > div.alignright > span.phone-number
{
color:#000 !important;
}
Need to edit the theme files for fixing the issues. I assume you have got it edited somehow already since some of the issues like multiple html tags shouldn’t be there unless the file header.php was modified.
There are some problems with your html. I would suggest you to fix them. Listing here some of them. You can check it at http://validator.w3.org
1) Multiple <html> tag.
2) <div class=”content” itemprop=”mainContentOfPage” home=”” singular=”” page=”” pageid-617″=””>
pageid-617″=”” => pageid-617=””
3) ID name with space inbetween ( <div id=”Diver Testimonial” …)
There shouldn’t be space between id names. Make it ( <div id=”Diver-Testimonial”…) and then try the following css for making the background full-width
#Diver-Testimonial {
background: tomato;
position: relative;
}
#Diver-Testimonial:after,
#Diver-Testimonial:before {
background: inherit;
position: absolute;
content: ”;
top: 0;
width: 100%;
height: 100%;
right: 100%;
}
#Diver-Testimonial:after {
left: 100%;
}
There are multiple places where the_post_thumbnail is being used in the theme. I would suggest you to use an editor like brackets.io and search for the_post_thumbnail and then replace them one by one by adding the array(‘itemprop’=>’image’ ) section making sure you are only editing the ones which are needed. A blanket replace all won’t work since the function is using different parameters in different places.
Can you please provide your site url.
You are welcome.
In http://69.195.124.172/~scwcorg/WordpressSCWC/wp-content/plugins/light/js/light.js
change
jQuery(“.video”).fancybox({
to
jQuery(“body > .video”).fancybox({
That should fix the issue.
You should be able to do it using custom css. Let me have the site url as well as the content section for which you want to change the color and will let you know the css to be applied.