Forum replies created

    Alok Maheshwari
    Spectator
    Posts: 303
    August 14, 2014 at 9:47 pm #10333

    Would need to have a look at the backend. Can you please provide your email where I can contact you for the login details.

    Alok Maheshwari
    Spectator
    Posts: 303
    August 14, 2014 at 9:41 pm #10332

    You can create a test account at http://test.theme4press.com/ and then check out how the various pages are laid out.

    Alok Maheshwari
    Spectator
    Posts: 303
    August 13, 2014 at 10:21 pm #10330

    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;
    }

    Alok Maheshwari
    Spectator
    Posts: 303
    August 13, 2014 at 9:36 pm #10329

    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.

    Alok Maheshwari
    Spectator
    Posts: 303
    August 13, 2014 at 12:03 am #10326

    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%;
    }

    Alok Maheshwari
    Spectator
    Posts: 303
    August 12, 2014 at 11:19 pm #10325

    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.

    Alok Maheshwari
    Spectator
    Posts: 303
    August 12, 2014 at 11:12 pm #10324

    Can you please provide your site url.

    In reply to Site goes grey
    Alok Maheshwari
    Spectator
    Posts: 303
    August 12, 2014 at 11:11 pm #10323

    You are welcome.

    In reply to Site goes grey
    Alok Maheshwari
    Spectator
    Posts: 303
    August 11, 2014 at 9:18 pm #10321

    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.

    In reply to Content Color
    Alok Maheshwari
    Spectator
    Posts: 303
    August 9, 2014 at 1:19 am #10317

    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.