Forum Replies Created

Viewing 15 posts - 8,566 through 8,580 (of 8,657 total)
  • Author
    Posts
  • in reply to: how to add scroll over text to pic #1197
    wensolutions
    Keymaster

    Hello @spiritualgem, this effect you see is not manually added. This means, whenever you upload the featured image for your blog posts , category posts or create gallery they will automatically take the effects of zooming or scrolling. Likewise, eye and link option also get added as you go through the process.

    Still if you have any confusions, kindly let us know.

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

    Hello @Miriam,
    If you post your site-url then it would be great. Inspecting the problem will be easier for us.

    Thanks!

    in reply to: Front page slider creation #1185
    wensolutions
    Keymaster

    Well, yes you are in the right track to set up the slider in your homepage.

    In the Select Slider Type -> ‘Featured Category’ option you would be able to select under which category you want to show the slider.

    You can choose this category right below another select option Select Category .

    Make sure the posts under this category have the featured image uploaded to each of those posts.

    To upload the Feature Image go to each particular posts editor section and you would find Feature Image section to upload the your post image.

    You can get more other flexible options to show up your slider images from pages, posts, featured images, etc thus giving you more controlled options for the slider.

    Consider checking WEN Business Pro features as well if you wish to have more controlling features through Customizer in your theme.

    Let us know if you have any other confusions as well.

    in reply to: Featured Slider is showing on Blog page #1181
    wensolutions
    Keymaster

    Sorry for inconvenience on this matter. We currently have no Child Theme available for this theme.

    However, we have easy solution for you to create a Child Theme through plugin approach by installing Once Click Child Theme plugin.

    Install and activate this plugin with required information being input for your child theme through Appearance Menu in your dashboard.

    Right after that go to functions.php file created in your child theme and add above PHP code snippets which will do the trick to control the slider in blog page.

    If you do not want to go through plugin approach to create a Child Theme, please check the codex documentation to create this in your own.

    We will be adding this feature too in our next update which is possibly releasing within couple of week.

    Write us back if you have any other problem or queries.

    Thank you for your time.

    in reply to: Banner / Header size #1180
    wensolutions
    Keymaster

    Hello Martin, try adding the following Custom CSS in Appearance -> Customize -> Theme Options -> Custom CSS

    .bx-viewport, .bx-wrapper {
       height: 52vh !important; /* adjust the numeric value to your own to adjust the banner height */
    }

    Likewise, to reduce inner page banner size add following code in same CSS section

    .page-inner-title {
       margin-bottom: 30px;
       padding-bottom: 30px;
       padding-top: 30px;
    }

    Please note that the numeric value is set from our assumption to reduce to a certain height.
    You can try adjusting them in your own to best suit your choice.

    Also in different note, as seen in your site you need to make sure you assign your current menu items to ‘Primary Menu’ locations from Menu section in dashboard to fit them in single line as in our demo.

    Let us know if you need any other help.

    Thanks

    in reply to: Banner / Header size #1170
    wensolutions
    Keymaster

    Hello Martin, from what you have written do you mean to reduce the current slider image height as banner in homepage.? Is it for homepage only or inner page banner size too. ? It would be helpful if you could also share your current site URL.

    Thanks

    in reply to: Featured Slider is showing on Blog page #1163
    wensolutions
    Keymaster

    Hello @Linda,
    For this, you have to do some codings. Hope following hints will guide you through.

    – First make a Child Theme and activate it before you go making the following changes. You will have two new files functions.php and style.css .

    – After you are done with Child Theme set up copy and paste the following piece of PHP code in your child theme’s functions.php file.

    function education_hub_check_slider_status( $input ){
    
       global $post, $wp_query;
    
       // Slider status
       $featured_slider_status = education_hub_get_option( 'featured_slider_status' );
    
       // Get Page ID outside Loop
       $page_id = $wp_query->get_queried_object_id();
    
       // Front page displays in Reading Settings
       $page_on_front  = get_option( 'page_on_front' ) ;
       $page_for_posts = get_option( 'page_for_posts' );
    
        if ( 'entire-site' == $featured_slider_status || ( ( is_front_page()) && 'home-page' === $featured_slider_status ) ){
    
         $input = true;
       }
       else{
         $input = false;
       }
       return $input;
    
     }

    This should do the trick to remove the Featured Slider from showing at the top of the Blog page.

    If you face any sort of difficulty in deploying this then you can kindly post it here.

    Thanks,
    Regards!

    in reply to: Change Menu Color #1162
    wensolutions
    Keymaster

    Hello @leeswilson,

    I want to match the navy blue color in my logo with the menu.

    To match the color of your logo with menu, just add the given css in `Customizing > Themes Options >
    Advanced Options` and this will match the color of logo your logo with menu:

    #site-navigation {
      background-color: #00435b  ;
    }

    Thanks!
    Regards,

    in reply to: Change Menu Color #1155
    wensolutions
    Keymaster

    Hello @leeswilson,
    To change the horizontal nav menu color to navy blue by adding simple custom CSS.
    Now for this first of all Go to your Dashboard -> Appearance -> Customize -> Themes Options -> Advanced Options -> Custom CSS.
    In this Custom CSS section add the following CSS:

    #site-navigation {
        background-color: #000080;
    }

    Hope this will help you to solve your issue.

    Best Regards!!!

    in reply to: Social Links #1154
    wensolutions
    Keymaster

    Hello @jamila,
    First of all thanks for your appreciation for the theme.
    For social menu, links should be added to menu whose location should be set ‘Social’ as you mentioned. Please see the screenshot on how to add links as a social icon: http://prntscr.com/9ydm7q.
    Please note that, currently the free version of the theme supports only 3 social icons that are facebook, twitter and linked-in. For more social icons and better features you can check out the pro theme here: http://themepalace.com/shop/wordpress-themes/biography-pro/

    Hope that helps!
    Regards,

    in reply to: how do I add social media icons? Do I have to purchase pro? #1135
    wensolutions
    Keymaster

    hello @jamila.blue,
    Above instruction is applicable for Photo Perfect theme. But as we look into your site through given URL, you are using Biography theme. So kindly post back your query in Biography specific forum so that we could reply you there.

    Thanks.

    in reply to: API Key #1122
    wensolutions
    Keymaster

    Hello Martin,

    I’m sorry to hear that you’re having trouble. From what you’ve written, it seems that you’re having an issue after you migrated your site to another hosting and probably tried to use the same Key in new hosting with previous key being still activated. That way same key cannot be use in multiple installations.

    Currently, we have attempted to delete the Key from your previous installation such that it should now work with the same Key from your new installation.

    Let us know if you still have the problem.

    With Regards

    in reply to: Single Post Blog Page #1112
    wensolutions
    Keymaster

    Hi,

    Try adding following custom styles in your theme option.

    Go to Appearance -> Customize -> Theme Options => Custom CSS

    body.blog #primary {
        width: 58%; /* reduce width of blog content area to 58%. You can adjust this value in your own */ 
    }
    
    .single #content #primary {
        width: 58%; /* reduce width of single post to 58% */
    }

    Hope this helps!

    in reply to: Images for portfolio #1104
    wensolutions
    Keymaster

    No problem ! Happy to help..

    in reply to: Images for portfolio #1098
    wensolutions
    Keymaster

    Yes, also make sure you have ‘checked’ the checkbox to crop to exact dimension as well.

    Next, you have to re-upload the image for the pages under ‘Therapy Locations’ section in your homepage to crop the images into these new dimension. Using pages or posts does not make any difference in the layout.

    I have noticed that the images are still cropped into 150 x 150. The above steps would help you remove this issue.

Viewing 15 posts - 8,566 through 8,580 (of 8,657 total)