Forum Replies Created

Viewing 15 posts - 4,471 through 4,485 (of 8,657 total)
  • Author
    Posts
  • in reply to: Additional Customization #66505
    wensolutions
    Keymaster

    Hello @efriedri,

    Glas we could help you.

    If you have any other issue, please let us know.

    Best Regards!!

    in reply to: Header Image not resizing for mobile device in pro version #66504
    wensolutions
    Keymaster

    Hello @perkinspapercraft,

    Actually, the thing is in responsive view the header will get cropped and this is how the theme is designed.

    However, the whole image can be displayed using the CSS in responsive view but the height of the header image will be decreased.

    Use below given CSS to adjust the header image.

    @media only screen and (max-width: 767px){
    #custom-header {
        background-size: contain !important;  
    }
    }

    Hope this helps.

    Best Regards!!

    in reply to: Font color and style issues #66482
    wensolutions
    Keymaster

    Hello, @helpmysystems,

    To change the background color of the footer section use below given CSS by going to Admin Panel > Appearance > Customize > Additional CSS and paste below given CS.

    .site-info {
        background-color: #25396d;    
    }

    Here change the color code as per your requirement.

    Now to resolve the issue of submenu paste below given CSS.

    .main-navigation ul ul {
        top: the 75%; 
    }

    In case of slider, you can use the default slider provided by the theme itself so that it wont have any sorts of problem.

    Since you have set the slider using the thirdparty plugin, the issues might have arise due to incompatibility with the plugin as we have not done any sorts of testing with the plugin so there is nothing much we do about this.

    Hope this helps.

    If you have any issues further, please let us know.

    Best Regards!!

    Have a good day 🙂 .

    in reply to: Bigger caption in the slider? #66481
    wensolutions
    Keymaster

    Hello @sofie-siversen,

    First of all thank you very much for using the pro version of the theme.

    Actually, we are not quite clear with your issues. If you meant to increase the font size of the caption then add bellow given CSS.

    For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.

    #main-slider p {
        font-size: 25px;  
    }

    You can change the font size as per your requirement.

    But if this is not what you meant, please let us know.

    As for the slash, please post your site URL so that we can provide a precise fix on this.

    Thank you 🙂 .

    Best Regards!!

    in reply to: Hide author in post and pages in Elead theme? #66480
    wensolutions
    Keymaster

    Hello @haivri,

    When we tried to access your site to help you further, we were unable to do so as your site seems to be down.

    So inform us again when your site is live and we will help you further.

    Thank you 🙂 .

    Best Regards!!

    Have a good day 🙂 .

    wensolutions
    Keymaster

    Hello @trotski518,

    Glad we could help you !!

    If you have any issues further, please feel free to post your queries and we will happily help you further.

    We will really appreciate if you could help us too by rating our theme in WordPress repo here:-

    https://wordpress.org/support/theme/edu-care/reviews/

    Best regards !!

    in reply to: Primary Sidebar & Secondary Sidebar both on Right of page #66478
    wensolutions
    Keymaster

    Hello @neocharles,

    Glad that you figured out the issue by yourself.

    If you have any issues further, please let us know.

    Best Regards!!

    Have a good day 🙂 .

    in reply to: help about featured image in slider #66477
    wensolutions
    Keymaster

    Hello @goldvision2010,

    Glad we could help you !!

    If you have any issues further, please feel free to post your queries and we will happily help you further.

    We will really appreciate if you could help us too by rating our theme in WordPress repo here:-

    https://wordpress.org/support/theme/education-hub/reviews/

    Best regards !!

    in reply to: help about featured image in slider #66429
    wensolutions
    Keymaster

    Hello @goldvision2010,

    Actually you don’t have to do anything in your theme files.

    Just go to your Admin Panel > Appearance > Customize > Additional CSS and paste the CSS there.

    Hope this helps.

    Best Regards!!

    in reply to: Additional Customization #66427
    wensolutions
    Keymaster

    Hello @efriedri,

    Your queries have been answered below:

    – Change the color of the mobile main menu

    Ans: To change the color of the mobile menu go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.

    #sidr-left-top-button{
        background: #cc181e;
    }

    You can change the color code as per your requirement.

    – Change the position of the mobile main menu to the right side of the screen

    Ans: To shift the meu to the right requires a higher code customization and as much as we would love to help you with this, we are unable to do so beacuse it is beyound the support we offer for our product.

    So our suggestion to you is hire a proffesional developer so that your theme wont be affected in any way.

    To hire a developer, pleaase refer to below link:

    http://themepalace.com/hire-a-customizer

    – Collapse all menu options on the mobile main menu

    Ans: This is how the theme is designed and if you want as you have said please hire a developer.

    – Change all link colors

    Ans: Since there are lots of links within the theme it is almost impossible to chage the color for all of them. If you want to change the color for any particular one then please let us know.

    – Change the color background for the “counter” section on the home page

    Ans: Please add below given CSS in Additional CSS for this.

    #counter-section .statscounts {
        background-color: #cc181e;
    }

    You can change the color as per your requirement.

    Hope this helps.

    Best Regards!!

    wensolutions
    Keymaster

    Hello @timechart,

    First of all thank you very much for using the pro version of the theme.

    Yes, the child theme will not import the customizer setting of the parent theme.

    However, you can import the parent theme setting to the child theme by adding the below-given custom code.

    For this add the code given below in your child theme functions.php file

    education_hub_pro_child_customizer_options_import() {
    
    if ( get_stylesheet() !== get_template() ) {
      add_filter( 'pre_update_option_theme_mods_' . get_stylesheet(), function ( $value, $old_value ) {
           update_option( 'theme_mods_' . get_template(), $value );
           return $old_value; // prevent update to child theme mods
      }, 10, 2 );
      add_filter( 'pre_option_theme_mods_' . get_stylesheet(), function ( $default ) {
          return get_option( 'theme_mods_' . get_template(), $default );
      } );
    }
    }
    
    add_action('init', 'education_hub_pro_child_customizer_options_import');

    Also not to forget it is always the best idea to go through the child theme for any modification in the parent theme as the original theme file will be safe and protected.

    Hope this helps.

    Best Regards!!

    Have a good day 🙂 .

    in reply to: Pinterest Social Menu Icon #66424
    wensolutions
    Keymaster

    Hello @adamharrisuk,

    Glad we could help you !!

    If you have any issues further, please feel free to post your queries and we will happily help you further.

    We will really appreciate if you could help us too by rating our theme in WordPress repo here:-

    https://wordpress.org/support/theme/clean-commerce/reviews/

    Best regards !!

    wensolutions
    Keymaster

    Hello @trotski518,

    To remove the text use below given CSS.

    For this go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS.

    .event-details-single .post-time {
        display: none;
    }

    Hope this helps.

    Best Regards!!

    in reply to: -closed- #66412
    wensolutions
    Keymaster

    Hello @efriedri,

    We will be answering your query in the forum where you have posted your query.

    Thank you 🙂 .

    Best Regards!!

    in reply to: Hide author in post and pages in Elead theme? #66411
    wensolutions
    Keymaster

    Hello @haivri,

    First of all, thank you very much for trying out the free theme.

    The feature to hide the author in the single page is only available in the pro version of the theme. So please can you explain in which page you want to hide the author so that we can help you further.

    Thank you.

    Best Regards!!

    Have a good day 🙂 .

Viewing 15 posts - 4,471 through 4,485 (of 8,657 total)