Forum Replies Created

Viewing 15 posts - 5,026 through 5,040 (of 8,657 total)
  • Author
    Posts
  • wensolutions
    Keymaster

    Hello @rolex523,

    Your queries has been answered below :

    Query #1:

    Ans : To display the search section above the slider image requires the additional CSS which is beyond the support we offer for our product.

    But if you are fine to display the search section just below the menu section then copy below given code in your child theme functions.php file .

    https://gist.github.com/anonymous/89da3e4f21ee23ac6740376430afc12c

    Query #2,

    Ans: Yes all the future updates that comes to the parent theme will be available in the child theme . If the updates comes then you have to update your parent theme file and automatically the updates will be seen in the child theme as well

    Query #3 ,

    Ans: It is always the bad idea to make any changes directly in your original file as the original modification will be lost .
    Also direct modifications that is done to your child theme will be lost after you update your theme to the latest version . So please go through child theme approach for any modification .

    Hope this helps .

    Best Regards!!

    in reply to: Removing Banner Block From a Particular Page #58676
    wensolutions
    Keymaster

    Hello @aakash_os,

    If you want to completely remove the banner section in header use below given CSS in Additional CSS.

    .page-id-361 .wrapper.page-inner-title {
        display: none;
    }

    Here Replace the page id with the page ID that you want to remove the header section of .

    Hope this helps .

    Any further issues are always welcome .

    Best Regards!!

    in reply to: Read more button #58675
    wensolutions
    Keymaster

    Hello @hansvjensen,

    The CSS we have provide work for the button in blog listing page .

    Since you want to change the button color in category page use below given CSS.

    .category a.read-more {
        background: #000;
        }

    Hope this helps .

    Best Regards!!

    in reply to: Read more button #58666
    wensolutions
    Keymaster

    Hello @hansvjensen,

    The CSS we have provided will change the color of the Read More button in block page which you have asked for .

    If this is not what you are looking for then please explain your issue properly with the proper screen shot marking the part that you want to change the color of . Also do not forget to post your site URL as would be easy for us to provide the precise fix .

    Best Regards!!

    wensolutions
    Keymaster

    Hello @rolex523,

    Yes after creating the child theme you need to activate the child theme.

    Now copy above given code locally in any of the text editor then using the FTP, transfer the file to the child theme of University Hub Pro.

    Hope this helps .

    Best Regards!!

    in reply to: Refund money #58656
    wensolutions
    Keymaster

    Hello @vergiis,

    Please send your refund request to info@themepalace.com with Order ID and purchase email address.

    Thank you .

    Best Regards!!

    in reply to: Header Image size smaller after removing page title #58655
    wensolutions
    Keymaster

    Hello @jsslanders,

    Since the header image is used as the background image, it gets zoomed when the screen is stretched .

    Also since your Header image width is 1920 px we have provided the CSS to adjust the header image up to the screen size of 1920 px width. For this just add below given CSS.

    @media only screen and (max-width: 1920px) and (min-width: 1360px)  {#custom-header {
        min-height: 460px;
        background-size:contain;
    }
    }

    But it will again get stretched if the screen size is more than 1920 px. If your screen size is more than this then you need to upload the image of width greater than 1920 px .

    As for the placing of CSS you can either place it in Additional CSS or Child theme, both the option wil work . But the CSS that is placed in the Additional CSS will be executed at first . So you have to either place the CSS in Additional CSS or child theme but not in both .

    Hope this helps .

    Best Regards!!

    in reply to: How do I change slide title #58654
    wensolutions
    Keymaster

    Hello @krousseau,

    The construction base pro has the multiple option to set the slider .

    So if you set the slider from the page, you can go to individual page edit screen to change the title and image .

    Screen shot :
    https://image.prntscr.com/image/wiAOKeKCScKoG36uyvbx-Q.png

    Similarly if you chose post/category/tag to display the slider you have to go to individual post edit screen to change the title and image

    If you select the image option then you will find the option to change the title and image within the customizer .

    You can definitely set more than 2 slider in the theme . You can set up to 20 slider .

    Hope this clears the confusion .

    Best Regards!!

    in reply to: Read more button #58653
    wensolutions
    Keymaster

    Hello @hansvjensen,

    To change the button color of Read More button in blog page use below given CSS.

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

    .blog a.read-more {
        background: #5cc4ef;
        }

    Hope this helps .

    Best Regards!!

    in reply to: Featured Slider size #58652
    wensolutions
    Keymaster

    Hello @aakash_os,

    As the height of the slider is actually defined by the height of the image used as featured image in post / pages you have selected to display in the slider so set the featured image of your desired height in the post / page chosen for the slider.

    Also make sure to upload the image of uniform size .

    Hope this helps .

    Best Regards!!

    wensolutions
    Keymaster

    Hello @rolex523,

    To replace the default search in the header of the theme you have to activate the child theme .

    You can even activate the child theme using the plugin given below :

    https://wordpress.org/plugins/wp-child-theme-generator/

    After activating the child theme in your child theme create the file searchform.php and paste below given code in searchform.php file .

    <?php
    /**
     * Search form.
     *
     * @package University_Hub
     */
    
    ?>
    <div class="search-box-wrap">
    	<?php echo do_shortcode('[wpdreams_ajaxsearchlite]'); ?>
    </div><!-- .search-box-wrap -->

    After pasting the given code go to Admin Panel > Appearance > Customize > Additional CSS and paste below given CSS .

    div[id*='ajaxsearchlite'].wpdreams_asl_container { 
        padding: 9px;
    }

    Hope this helps .

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

    Best Regards!!

    in reply to: reduce size Header Slider #58648
    wensolutions
    Keymaster

    Hello @jgl1974,

    Did you place all the featured image of uniform size (size of your requirement ). If any one of the image is of bigger size then slider will adjust its height according to that image size .

    Also after uploading the image of required height please once regenerate the thumbnail using the plugin below .

    https://wordpress.org/plugins/regenerate-thumbnails/

    If this does not help then please let us know also do not forget to paste your site URL so that we could inspect further .

    Thank you .

    Best Regards!!

    in reply to: News archive #58647
    wensolutions
    Keymaster

    Hello @feigale,

    To remove the second tab from the blog listing page use below given CSS.

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

    #graduate .tabs li:nth-child(2) {
        display: none;
    }

    Hope this helps .

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

    Best Regards!!

    in reply to: Upcoming events in News & Events section #58524
    wensolutions
    Keymaster

    Hello @dh201hy,

    When we checked the code locally it is working fine .

    You can edit the time from the publish box at the right hand side side of the post edit screen .

    Screen shot .
    https://image.prntscr.com/image/siNid8HaSo_Jcs-AtWQBNg.png

    Hope this helps .

    Best Regards!!

    in reply to: Translate previous and next #58508
    wensolutions
    Keymaster

    Hello @esthervoorpubliek-nl,

    After generating the .po and .mo file you have to rename the mo file by following the syntax .

    {domain}-{locale}.mo

    You can also refer to below link for any confusion in naming .

    https://localise.biz/help/wordpress/loading-translations

    Hope this helps .

    Best Regards!!

Viewing 15 posts - 5,026 through 5,040 (of 8,657 total)