Forum Replies Created

Viewing 15 posts - 6,976 through 6,990 (of 8,657 total)
  • Author
    Posts
  • in reply to: Logo and Title Placement #27597
    wensolutions
    Keymaster

    Hello,

    While we have tested the website with the codes, the logo seems to be lining up to the size appropriate to the title beside it. However it did seem bit clinging to the bottom.

    To re position it a bit aligned to the title, try adding in the following custom CSS :

    @media (max-width: 768px){
    
    .has-logo-site-title #site-logo img {
    
    padding-top: 0px;
    
    }
    
    }

    Hope this Helps,

    Best Regards !!

    in reply to: Forum Plugin will not display page #27583
    wensolutions
    Keymaster

    Hello @RustyKnight

    We checked the theme using the bbPress plugin and the forum is working fine.

    So please can you lets us know which plugin you are using ?

    Also post your site URL if possible so that we could inspect your problem ?

    Hope you understand.

    Best Regards!!

    wensolutions
    Keymaster

    Hello @froshdimeji,

    WordPress does support the feature you are looking for with the use of function the_modified_date() that can be used inside the_loop to get your desired output.

    If you are using the Child theme of Education Hub theme, you can try modifying your desired function to get the modified date in your desired function.

    If you are not confident on code handling and need help further with the customization of the functions to get the desired output, please consider hiring a professional customizer for the custom task. to hire a customizer, please go through the link : http://themepalace.com/hire-a-customizer/

    Hope this Helps,

    Best Regards !!

    in reply to: Background Color #27579
    wensolutions
    Keymaster

    Hello @HEP,

    We can see the color does appear in the responsive view in the header section of the website.

    The CSS you have tried to change the color has wrong selector used in it. Also, you do not need to put the <style> </style> tags while using the Custom CSS. Please use the following custom CSS that should resolve your issues:

    body.custom-background {
        background-color: #fff!important;
    }

    This will change the color to white, however, please note that as the current color of the site title and tagline are white, it will not be visible in the white background.

    Please change the color of your site title and tagline colors to appropriate colors from your Admin Dashboard > Appearance > Customize > Color Options > Header Color Options.

    Hope this Helps,

    Best Regards !!

    in reply to: Logo and Title Placement #27578
    wensolutions
    Keymaster

    Hello @jjambeck,

    Please try pasting in the following Custom CSS in your Admin Dashboard > Appearance > Customize > Additional CSS :

    @media (max-width: 768px){
    	div#site-branding div#site-logo{
    		width:20% !important;
    	}
    	.site-menu div#site-header-text {
    	    width: 80%;
    	}
    	#site-header-text h1.site-title {
    	    font-size: 13px;
    	    margin-left: 10px;
    	}
    	#site-header-text h1.site-title {
    	    margin-top: 18px;
    	}
    	#site-branding #site-header-text h1 a{
    		color: #059b78 !important;
    	}
    
    }

    This should put the title beside the logo in mobile view matching the color of the title to same as in the desktop view.

    Hope this Helps,

    Best Regards !!

    in reply to: Additional CSS not working #27576
    wensolutions
    Keymaster

    Hello

    To remove the related post Please use the below CSS.

    .single .jp-relatedposts {
        display: none !important;
    }

    Hope this helps .

    If you have any problem further please let us know.

    Regards!!

    in reply to: Payment still pending. #27480
    wensolutions
    Keymaster

    @KappaPsiWebmaster,

    Please check the similar thread and conform your check out process.

    http://themepalace.com/topic/ordered-payed-but-nothing/#post-27274

    Write us back if you still have any problem.

    Other helpful link:

    http://themepalace.com/tutorials/how-do-i-buy-themes/

    in reply to: News slider not appearing #27478
    wensolutions
    Keymaster

    Hello,

    The theme documentation does provide a concise instructions on the theme usage and hence the best approach for setting up the website for the website.

    Furthermore, if you have any further confusion, queries or issues we are always here to help.

    Best Regards !!

    wensolutions
    Keymaster

    Hello @froshdimeji,

    The forum is dedicated to the support and bug fixing for our products and hence we cannot really help you with the advertisement strategies for the website.

    However, in terms of User experience, it is never a good idea to completely block your visitors from your site contents because of Ad blocker use. The best way out would be to find a way to display the ads in less irritating way and let visitors to your website rather than blocking them away.

    Best Regards !!

    wensolutions
    Keymaster

    Hello @froshdimeji,

    Upon Inspection of the code you have provided it should be working fine with loading the parent styles but you are not loading the child theme’s style.css.

    replace the code block with the one below :

    <?php
    /**
     *Recommended way to include parent theme styles.
     *(Please see http://codex.wordpress.org/Child_Themes#How_to_Create_a_Child_Theme)
     */  
    
      add_action( 'wp_enqueue_scripts', 'education_hub_child_style' );
      function education_hub_child_style() {
    	wp_enqueue_style( 'parent-style', get_template_directory_uri() . '/style.css' );
    	wp_enqueue_style( 'child-style',get_stylesheet_directory_uri() . '/style.css',array('parent-style'));
    }

    Also, please make sure you have added your respective CSS changes to the child theme’s style.css and the functions to the functions.php file.

    Also, it is very important that you paste in the functions before the closing of the PHP ( “?>” tag ). We suggest that you remove the closing PHP tag from your functions.php file.

    If you are having further trouble creating and using the child theme manually, you can also automate the task with the Child theme generator plugin.

    Hope this Helps,

    Best Regards !!

    in reply to: Cannot find/edit Categories menu #27434
    wensolutions
    Keymaster

    Hello,

    The Photo Perfect theme already comes with an option to display or remove the category menu from a simple setting in a theme customizer. You do not need to create sub directories or a child theme for the simple task.

    To remove the categories menu simply go to your Admin Dashboard > Appearance > Customize > Theme Options > Header Options and uncheck the “Show Category Dropdown” option.

    Save and publish your changes and the categories menu in the right will be removed from the website.

    Hope this Helps,

    Best Regards !!

    in reply to: News slider not appearing #27433
    wensolutions
    Keymaster

    Hello @Uff,

    On the first setup of the theme, to display the Slider widget as well as other widgets in the front page widget area you must first Create and set a static front page.

    To do so please go to your Admin Dashboard > Appearance > Customize > Static Front Page and choose “A Static Page” option under “Front Page Displays” Setting.

    You should now be able to setup and view the widgets in the front page including the slider you are referring to.

    You can also go through the theme’s official documentation that provides detailed instructions on theme usage here : http://themepalace.com/theme-instructions/magazine-plus/

    Hope this Helps,

    Best Regards !!

    wensolutions
    Keymaster

    Hello @froshdimeji,

    We have tested your website on the UC Browser and the menu still seems to be working fine.

    The difference that you have noticed might be because of the opening animation of the menu that is presented differently by the browsers.

    Even with the slight change in animation behavior the menu is working fine and as expected and your users should not have any problems using the menu in the website.

    Best Regards !!

    wensolutions
    Keymaster

    Hello @froshdimeji,

    While we have tested the main menu in the mobile devices, the menu seems to be working fine on our side.

    Please verify if the issue still exists and if the issue is still seen please let us know the browser ( device / orientation ) that you are having the issues at so that we could fin a fix further.

    Best Regards !!

    in reply to: Categories widget error after update #27338
    wensolutions
    Keymaster

    Hello @bacciotti,

    While we have tested the latest version of the Education Hub theme with the widgets you have mentioned in the sidebar on our side, the widgets seems to work fine.

    Please provide to us your website URL so that we can visualize the issue and provide you with a possible fix.

    Best Regards !!

Viewing 15 posts - 6,976 through 6,990 (of 8,657 total)