Forum Replies Created

Viewing 15 posts - 8,491 through 8,505 (of 8,657 total)
  • Author
    Posts
  • in reply to: How to chage the title of the Category menu #1801
    wensolutions
    Keymaster

    Hello, @mileva_lukic

    I want to change the title CATEGORY of the drop down menu at the top right side of the page. How?

    To change title CATEGOTRY of the dropdown menu at the top right side of the page you need to do customization by creating child theme.
    To create child theme reference here https://codex.wordpress.org/Child_Themes and don’t forget to activate child theme.
    Now in functions.php of your child theme you need to add the following code:

    
    function photo_perfect_add_category_navigation(){
    
        $show_category_dropdown = photo_perfect_get_option( 'show_category_dropdown' );
        if ( true !== $show_category_dropdown ) {
          return;
        }
        ?>
        <div id="category-menu" class="clear-fix header-navigation">
          <div class="container">
            <button class="nav-list-btn"><i class="fa fa-list"></i><span><?php _e( 'Your text', 'photo-perfect' ); ?></span></button>
            <div class="category-list-wrapper">
              <ul>
              <?php wp_list_categories( 'title_li=&depth=1' ); ?>
              </ul>
            </div><!-- .category-list-wrapper -->
          </div><!-- .container -->
        </div><!-- #category-menu -->
        <?php
      }
    
    

    Hope this will help to resolve your issue.

    Regards!!!

    in reply to: How do I change the title of the home page? #1798
    wensolutions
    Keymaster

    @Mardan, Would you mind posting your support query again in Bizlight Pro theme which is a correct theme that you are using? I guess you are asking it inside wrong theme forum. Thanks.

    in reply to: Bizlight Pro theme problems by displaying on mobile phone #1772
    wensolutions
    Keymaster

    I see that you have other CSS codes (probably your plugins style) overriding the current slider behavior as a result above code is not working. Based on this assumption, we have generated following CSS which should now work.

    Please remove the above suggested code and try the following CSS.

    .evision-slider-content {
    display: table;
    height: 100%;
    text-align: center;
    width: 100%;
    position: static;
    }
    
    .evision-slider-caption{
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    width: 80%;
    }
    
    @media screen and (max-width: 767px){
    
    .evision-wrap-banner .bx-viewport, 
    .evision-wrap-banner .bx-wrapper,
    .evision-main-slider{
        height: 50vh !important;
    }
    
    .evision-slider-caption {
      width: 96%;
      padding-bottom: 10%;
      padding-top: 10%;
    }
    }

    Make sure that you have viewed your site in safari browser in iOS devices not in Windows to verify it is working in Safari.

    Hope this helps !.

    in reply to: Any way to disable the hover-over zoom on images? #1771
    wensolutions
    Keymaster

    Hello, @shutupandeatyourcoal

    Nice to know that the problem has been solved. If there are any further query, then, please feel free to post them.
    We will really appreciate if you could help us too by rating our theme in WordPress repo here:-
    https://wordpress.org/support/view/theme-reviews/photo-perfect

    Thanks.

    in reply to: Elements on posts #1769
    wensolutions
    Keymaster

    Hello, @gideondavies

    Following the demo of the theme there is no such issue of padding or else in mobile view.
    It works all fine in mobile with portrait or in landscape view without any issue of such padding.
    You can check demo in mobile view as well from here http://demo.wenthemes.com/photo-perfect/
    It might be due to third party plugins that you have installed or else but not due to the theme itself.

    Best Regards!!!

    in reply to: Main Nav Active Hover Color #1764
    wensolutions
    Keymaster

    It was found that CSS are getting overriden by your child theme style.css where you have added ‘foundation css ‘. As a result, menu in responsive was messed up.

    You can correct it by adding the following line of CSS code

    @media only screen and (min-device-width : 320px) and (max-device-width : 640px) {
    .main-navigation li {
      
       display: block !important;
       width: 100% !important;
    }}

    You may consider disabling current Mega Menu to try the above CSS in previous state.

    Hope this helps

    in reply to: Main Nav Active Hover Color #1761
    wensolutions
    Keymaster

    Hello @Anthony,
    Try this code inside child theme’s functions.php only:

    
    <?php
    add_action( 'wp_enqueue_scripts', 'theme_enqueue_styles');
    function theme_enqueue_styles() {
        wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
       }

    And your child theme’s style.css goes something like this:

    
    /*
    Theme Name:     Bizlight Pro child
    Description:    Bizlight Pro child theme
    Author:         admin
    Template:       bizlight-pro
    
    (optional values you can add: Theme URI, Author URI, Version, License, License URI, Tags, Text Domain)
    */

    Let us know how it works.
    Regards.

    in reply to: Elements on posts #1757
    wensolutions
    Keymaster

    Hello, @gideondavies

    Currently there seems to be problem with site URL that you have provided.The browser shows white blank page.
    So we couldn’t provide you with the solution.

    Regards!!!

    in reply to: Any way to disable the hover-over zoom on images? #1755
    wensolutions
    Keymaster

    Hello, @shutupandeatyourcoal

    disable the automatic zoom when you hover-over an image with the mouse?

    To disable the automatic zoom when you hover-over an image with the mouse, you need to add custom CSS.
    To add custom CSS go to Admin Panel -> Appearance -> Customize -> Theme Options -> Advanced Options.
    In advanced options section you will see a box to write custom CSS.
    Now copy and paste below code in that box.

    
    .masonry-entry:hover a img{
        -webkit-transform:scale(1); 
        -moz-transform:scale(1); 
        -ms-transform:scale(1);
        -o-transform:scale(1); 
         
      }
    

    Hope this will help to solve your issue.

    Best Regards!!!

    in reply to: Adding content to of page #1735
    wensolutions
    Keymaster

    Hello @Martin,
    You can go to theme’s directory’s inc/hooks/header.php and find function bizlight_before_wp_head(). You can paste your code inside the function. While making any changes to your file, use FTP/File Zilla and make sure to make back up of your file you are changing.

    Regards.

    in reply to: Bizlight Pro theme problems by displaying on mobile phone #1732
    wensolutions
    Keymaster

    Hi,

    Try adding below CSS in Custom CSS box.

    
    .evision-slider-content {
    display: table;
    height: 100%;
    text-align: center;
    width: 100%;
    position: static;
    }
    
    .evision-slider-caption{
    display: table-cell;
    height: 100%;
    vertical-align: middle;
    width: 80%;
    }
    
    @media screen and (max-width: 767px){
    .evision-wrap-banner .bx-viewport{
      overflow: visible !important;
    }
    
    .evision-wrap-banner .bx-viewport, 
    .evision-wrap-banner .bx-wrapper,
    .evision-main-slider{
        height: auto !important;
    }
    
    .evision-slider-caption {
      width: 96%;
      padding-bottom: 10%;
      padding-top: 10%;
    }
    }
    

    Hope this will work for you.

    Regards!!!

    in reply to: Elements on posts #1723
    wensolutions
    Keymaster

    Hello @gideondavies,
    Your issues are replied below:

    Just noticed also. I’m assuming there is a way to delete the category menu at the top of page.

    Yes there is a way to disable category menu at the top of page.
    For this you have to go to Admin Panel -> Appearance -> Customize -> Theme Options -> Header Options.
    In this section you will see a check-box saying Show Category Dropdown.You need to uncheck that check-box as shown here http://prntscr.com/a7mvtm to disable category dropdown.

    I havent put a menu on yet but will it do the same and can it be positioned centrally below the title on mobile view which is normal? Maybe some more css??

    Yes it can be positioned centrally below title with Custom CSS:
    First Go to Admin Panel -> Appearance -> Customize -> Theme Options -> Advanced Options.In this section copy and paste below custom CSS in Custom CSS box.

    
    @media (min-width: 481px) and (max-width: 600px) {
    #main-nav{
    	top: 100%;
        left: 36%;
    
    }
    }
    @media (max-width: 480px) {
    #main-nav{
    	top: 165px;
        left: 44%;
    
    }
    }
    

    Note:Above CSS will effect in mobile view only.
    Hope this will help you.

    Best Regards!!!

    in reply to: Main Nav Active Hover Color #1722
    wensolutions
    Keymaster

    Hello @ Anthony,
    For menu hover, you can paste the following code in your child theme’s style.css or in Custom CSS section.

    .main-navigation ul ul{
    background-color:#F40000 !important;
    }
    .main-navigation ul ul ul{
    background-color:#F40000  !important;
    }

    This should change the main nav active hover color.

    And for customization, you can customize in your child theme. Now even if new version of the theme is released then it won’t effect the customization that you have made in your child theme.

    Regards.

    in reply to: Elements on posts #1715
    wensolutions
    Keymaster

    Hello @gideondavies,
    Your issues are replied below:

    there seems to be an issue when viewing posts on a mobile that beneath each post (photo) there is a black square (element) showing the category together with the link.

    In fact black square (element) showing the category together with the link when viewing post on a mobile beneath each post is not an issue this is feature of the theme. The theme is designed in such way in mobile view.
    In desktop there is hover effect so that box appears within the photo when there is mouse hover over that image.But in mobile view there is no hover effect so that box is kept beneath the photo.

    can you instead make it so you can click on the photo in mobile view (ie make it responsive) like it is on desktop?

    Photo is clickable and responsive as well in moble view.And you can make it like it is on desktop by customizing through child theme.

    Best Regards!!!

    in reply to: Bizlight Pro theme problems by displaying on mobile phone #1699
    wensolutions
    Keymaster

    Hi,

    Go to Appearance -> Customize -> Theme Options -> Custom CSS in your dashboard

    And put the following CSS code:

    
    .bx-viewport, .bx-wrapper {
        position: relative;
        width: 100%;
        height: 500px !important;
        top: 0;
        left: 0;
    }
    

    Hope this will help.

    Regards!!!

Viewing 15 posts - 8,491 through 8,505 (of 8,657 total)