Forum Replies Created

Viewing 15 posts - 8,281 through 8,295 (of 8,657 total)
  • Author
    Posts
  • in reply to: Sticky Nav #5670
    wensolutions
    Keymaster

    Hello @anthony,
    How are you doing?
    I tested your site and found that it is updated to WordPress new verion 4.5. There is currently a known issue with WordPress 4.5. For the time being, you can try to put the following code in your child theme’s functions.php file.

    if (!is_admin()) {
      		wp_deregister_script('jquery');
    		wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"), false, '1.11.3');
    		wp_enqueue_script('jquery');
    }

    Here are some guides in case you haven’t made Child theme before:

    Tutorial 1
    Tutorial 2

    Note: As WordPress fixes the issue, you can remove the above code.

    Hope this helps to resolve your issues.
    Thanks

    in reply to: slider and animation not working #5669
    wensolutions
    Keymaster

    Hello @solte98,
    There is currently a known issue with WordPress 4.5. For the time being, you can try to put the following code in your child theme’s functions.php file.

    if (!is_admin()) {
      		wp_deregister_script('jquery');
    		wp_register_script('jquery', ("http://ajax.googleapis.com/ajax/libs/jquery/1.11.3/jquery.min.js"), false, '1.11.3');
    		wp_enqueue_script('jquery');
    }

    Next, Go to Appearance-> Customize-> Theme Options->Custom CSS and paste the following code:

    .bx-controls-direction{
    display:none;
    }

    Click Save and Publish to save.

    Here are some guides in case you haven’t made Child theme before:

    Tutorial 1
    Tutorial 2

    Note: As WordPress fixes the issue, you can remove the above code.

    Hope this helps to resolve your issues.
    Thanks

    in reply to: Three Columns #5661
    wensolutions
    Keymaster

    Hello @kmevanish,
    Hope you are doing good.
    Can you please share your site url so that we could have closer look at it?

    Thank you.

    in reply to: Slider affects and services section icons #5635
    wensolutions
    Keymaster

    Each 3 blocks in services section will be counted and assign the different images that you write.

    in reply to: Slider affects and services section icons #5624
    wensolutions
    Keymaster

    Since the blocks in Service are queried in loop image can be statically given in loop by comparing the item.

    Hints : replace div block

    <div class="icon-container">
    //
    </div>

    with following conditions

    if($i == 1){
    <div class="icon-container">
    <img src="image1.png">
    </div>
    }
    if($i == 2){
    <div class="icon-container">
    <img src="image2..png">
    </div>
    }
    if($i == 3){
    <div class="icon-container">
    <img src="image3.png">
    </div>
    }

    This should do the trick !

    in reply to: Slider affects and services section icons #5611
    wensolutions
    Keymaster

    Well, you can customize bizlight\inc\hooks\homepage-service.php file from the path according to your requirement.

    Note : Consider making a Child Theme to override the parent behavior preventing any loss from future updates.

    Thanks

    in reply to: Slider affects and services section icons #5609
    wensolutions
    Keymaster

    Hello @Charles.brandreth,
    As you can see all the div have same class so it’s not possible to add different images for all the service icons. So, you might consider Hiring a Customizer to make your theme capable of different service images.

    Let us know if you have any further queries.

    Regards

    in reply to: Slider affects and services section icons #5606
    wensolutions
    Keymaster

    Hello @charles.brandreth,
    Have you tried changing the font awesome icon from Customize-> Home/Front Service section-> Select Service from Page->
    Icon 1: write fa-desktop inside it.
    Icon 2: Write fa-bug inside it.
    Icon 3: write fa-laptop inside it.

    Note: You can write your own icon code inside Icon section.
    This should be the trick to show three different services section icons.

    Best Regards!!

    in reply to: Changing font size #5581
    wensolutions
    Keymaster

    Hello @cherylr,
    You can change the font size of any section targeting the class/id of that section. For example if you want to increase font-size of paragraph you need to go to Appearance-> Customize-> Theme Options-> Advanced Options-> Custom CSS and write following code:

    .entry-content p{
    font-size:1.3em;
    }

    I have used 1.3 em font size, you can change the value as required.
    Thanks

    in reply to: Mobile Colors Not Matching Full Website #5580
    wensolutions
    Keymaster

    Hello @rsruss67

    Well currently we have noted down this as an issue which will be fixed in next update.
    Temporary solution for this will be through custom CSS.
    To add custom CSS you need to go to Admin Panel / Appearance / Customize / Theme Options / Advanced Options.
    In this section you will see a box to write custom CSS. Now copy and paste below code in that box.

    
    @media only screen and (max-width: 767px){
    	.main-navigation ul {
        background: #993333 none repeat scroll 0 0;
       }
    }
    
    @media only screen and (max-width: 767px){
    	.menu-toggle {
        background-color: #993333 !important;
       }
    }
    

    Hope this will help to resolve you issue.
    Let me how it goes.

    Best Regards!!!

    in reply to: Metadata #5579
    wensolutions
    Keymaster

    Hello @Chefmom520

    Can you please share your site URL so that I can debug your issue.
    Please refer the section of the site as well from where you want to remove the author.

    Best Regards!!!

    in reply to: Slider affects and services section icons #5578
    wensolutions
    Keymaster

    Hello @Charles.brandreth

    Can you please share your site URL so that I can debug you issue in much details.

    Regards!!!

    in reply to: How to edit the header html parts in free version #5577
    wensolutions
    Keymaster

    Hello @Owen123

    The customization you are referring seems to be pretty easy but the theme is designed in such a way that replacing the divs is not quite easy as just like cut and paste. This needs high customization can be done by creating child theme.
    Hope this will make you clear.

    Best Regards!!

    in reply to: Changing font size #5575
    wensolutions
    Keymaster

    Hello @CherylR

    Can you please share your site URL with little much description about your issue.
    Please tell me which section of the text’s font size you want to change?

    Regards!!!

    in reply to: Child Themes #5574
    wensolutions
    Keymaster

    Hello @CherylR

    Yes, of course you can create child theme of any pro version of the theme. Further it will not prevent you from installing available theme’s updates.
    So you can freely create child theme and able to install any available theme’s update.

    Hope this will make you clear.

    Regards!!

Viewing 15 posts - 8,281 through 8,295 (of 8,657 total)