Forum Replies Created

Viewing 15 posts - 8,401 through 8,415 (of 8,657 total)
  • Author
    Posts
  • in reply to: Slide problem on Dolphin Browser #3895
    wensolutions
    Keymaster

    Hello @Rattus,
    With regards to your issue, we checked the demo site of the theme in the Dolphin browser and found everything working fine. You can check the demo site on your side and you will see everything fine including the slider as well as nav.
    So, for now we would like to recommend you to see if there is any js issue in your theme which is creating those issues. Also, check out the plugins that you are using.

    Demo site: http://demo.evisionthemes.com/bizlight-pro/

    Let us know if you get any errors when trying to view it.

    Regards!!

    in reply to: Woocommercer CSS style conflict with Bizlight theme #3894
    wensolutions
    Keymaster

    @9toy – Go to Customize-> Theme Options -> Custom CSS and add following code:

    input#billing_phone {
       height: 50px !important;
       border: 1px solid #dddddd !important;
    }

    Hope this resolves your issue.
    Regards!!

    in reply to: Woocommercer CSS style conflict with Bizlight theme #3886
    wensolutions
    Keymaster

    Hello @9toy,
    Thanks for posting!
    I’d strongly recommend you not to touch the style.css file else your theme will broke.
    To style the woocommerce telephone input field you’ll need to identify the ID’s and Classes (as you mentioned) that you’d like to target with your CSS code, then write the CSS code and add this to Custom CSS section inside of the WP-Admin.

    To identify what elements need to be targeted by the CSS code I’d suggest using tools. When looking to find the ID’s and Classes, there really is no better tool than Firebug for firefox and the “inspect element” tool inside of Chrome.

    You mentioned to change CSS of Woocommerce Telephone input field.
    You can target the input fields by adding a block of CSS like this:

    input[type="phone"]:focus {
      color: #212121;
      background-color: #ffffff; 
      -webkit-appearance: none;
    }

    If you have any additional questions or specific things you’d like to change about your form after applying the above, feel free to post back here and I’d be happy to take another look and provide as much help as I can!

    in reply to: Want to remove image and text banner. #3850
    wensolutions
    Keymaster

    Hello !

    To remove banner text :

    h1.entry-title {
        display: none;
    }

    To increase the banner height:

    .page-inner-title{
        padding-top: 246px; // increase this value
    }

    To remove banner entirely on the particular page, just go to page edit. ‘Unchecked’ the box for the option ‘Enable banner image’ checkbox and so you will be done!

    Thanks

    in reply to: Need to add text to right on top screen #3838
    wensolutions
    Keymaster

    @9toy,

    1. I want to move one line up on the main menu.


    Paste the following code inside Custom CSS:

    .main-navigation{
    margin-top: 0 ;}

    Note: It will move the entire menu up. Cart is also a menu, so it will also move up.

    2. I want to delete underline on the main menu, I try to follow this code (http://themepalace.com/topic/how-to-remove-underline/), but not work.


    Try this Code > Put the following code inside Custom CSS:

    .main-navigation li:hover  a:after, .main-navigation .current_page_item  a:after, .main-navigation .current-menu-item  a:after, .main-navigation .current_page_ancestor  a:after, .main-navigation li.active  a:after, .main-navigation li.active  a:after, .main-navigation li.active  a:after, .main-navigation li.current_page_parent a:after {
       background: none !important;
    }

    Hope this helps resolve your issue.
    Regards!!

    in reply to: Need to add text to right on top screen #3808
    wensolutions
    Keymaster

    This time a little improve in code and text position as you have wished. Just replace previous code as instructed below.

    Just add HTML code right above the ‘nav’ tag but just below <div class="col-xs-10 col-sm-6 col-md-8 col-lg-8"> div above.

    HTML code :

    <div class="contact-num">
    <a href="callto:+123456789" class="call-us">Call Us : +123 456 7890</a>
    </div>

    Add CSS code :

    .contact-num {
        float: right;
        padding-top: 17px;
        padding-right: 34px;
    }
    
    .contact-num a.call-us {
        color: #FFFFFF !important;
    }

    This tweak should do the trick !

    in reply to: custom child theme (Bizlight Pro) not working #3807
    wensolutions
    Keymaster

    @9toy, both approaches #1 and #2 above are correct. It is also a default code that should be in your functions.php before you activate your Child Theme. Either of the snippets above are optional, they load the parent style in your Child Theme through functions.php .

    #1 approach : loads parent style in your Child Theme. Your child theme’s stylesheet will usually be loaded automatically.

    #2 approach : If it is not, you will need to enqueue it as well. Setting ‘parent-style’ as a dependency will ensure that the child theme stylesheet loads after it.

    Make sure you have activated your Child Theme from your dashboard. Then all your custom functions will need to be added just below the codes.

    Learn more about creating Child Theme with default files and codes from below link.

    https://codex.wordpress.org/Child_Themes

    Hope this helps!

    in reply to: Payment Status Pending #3802
    wensolutions
    Keymaster

    Well, after looking at your screenshot it looks like you have maximum execution time exceeded while uploading your zip file in your localhost setup. This usually happens in local system with default XAMPP configuration.

    Therefore quick approach now would be manually extracting your zip package inside

    C:\xampp\htdocs\os-wordpress\wp-content\themes\

    Then login your admin dashboard and activate the theme from Appearance -> Themes.

    This should do the trick ! .

    in reply to: Need to add text to right on top screen #3771
    wensolutions
    Keymaster

    @9toy – Create Child Theme, and update the code from line 251 (ie 1 line above <nav>) upto </header> inside inc/hooks/header.php by following lines of code:

    <div class="col-xs-10 col-sm-6 col-md-8 col-lg-8">
     <nav id="site-navigation" class="main-navigation" role="navigation">
      <button class="menu-toggle" aria-controls="primary-menu" aria-expanded="false"><i class="fa fa-bars"></i></button>
       <?php wp_nav_menu( array( 'theme_location' => 'primary', 'menu_id' => 'primary-menu' ) ); ?>
      </nav>
     </div>
      <div class="col-sm-1 col-md-1 col-lg-1">
      <h6>
      Call PhoneNumber
      </h6>
                  </div>       
                    </div>
                </div>
            </header>

    Hope this works.
    Regards!!

    in reply to: Payment Status Pending #3769
    wensolutions
    Keymaster

    @aakash_os, sorry for the trouble. Your request has been forwarded to our Sales Team . You will soon receive an email and be able to download your purchased theme.

    Thank you for your patience!

    in reply to: How to add "Nothing found" on search results? #3760
    wensolutions
    Keymaster

    Hello @scorbelli,
    Hope you are doing good.
    You can achieve this by minor changing the code. Go to themes->magzimum->search.php file and make the following change.

    Replace
    <?php get_template_part( 'content', 'none' ); ?>

    By
    <?php get_template_part( 'template-parts/content', 'none' ); ?>

    This should do the trick to show “Nothing found” when the search couldn’t find any result.
    Hope this will help resolve your issue.

    Regards!!

    in reply to: Need to add text to right on top screen #3758
    wensolutions
    Keymaster

    Hello @9toy,
    We would like to see your current html code. Can you share your site url here?

    Regards!!

    in reply to: Issues with bx-viewport size #3648
    wensolutions
    Keymaster

    In current context it is not possible to completely get ride of transition as long as static image is still being loaded as a background inside slider HTML markup. This means slider effect will still be transiting in the background.

    If you can go through some customization, alternative approach could be :

    <div class="evision-wrapper evision-wrap-banner evision-banner-right-nav">
    // current slider stuffs , hide this div through custom css in mobile viewports
    </div>
    
    /** add new div just below slider div above**/ 
    <div class="new-div with-static-background">
    // this div will be 'display: block' in mobile view hiding above slider div
    </div>

    Thanks

    in reply to: Employee section #3647
    wensolutions
    Keymaster

    Well, to achieve the whole output having new section with employee details, you would need to customize the several core files through Child Theme approach.

    Being based on the above facts, we recommend you to Hire a Customizer for better enhancement of the theme with those features and other required customizations and design workarounds needed during the course.

    in reply to: Theme not working on iphone 4S browser Safari #3646
    wensolutions
    Keymaster

    Hello @Gwendolynlove,

    Thanks for the site URL.

    Error message: “A problem occurred with this webpage so it was reloaded”

    We have inspected your site and seen your slider images of size approx. 1.5 MB. Make sure you optimize the slider images to minimum size. Currently images size are approx. 1.5 MB.
    Further make sure you upload the image that are cropped to exact dimensions 1920 x 690 as recommended for sliders.
    OR
    Most of time you may see this because of the problem in Webpage itself or Because of Network issues.
    If the above explained solution didn’t work then you may find different methods to Fix A Problem Occurred with this Webpage so it was Reloaded.
    Visit this link for more details.
    Let us know how it goes.

    Best Regards!!

Viewing 15 posts - 8,401 through 8,415 (of 8,657 total)