Forum Replies Created

Viewing 15 posts - 301 through 315 (of 1,555 total)
  • Author
    Posts
  • Psink
    Keymaster

    The issue is solved in latest version v1.3.0
    https://www.awesomescreenshot.com/video/22013099?key=aff625bd2708138622cf509fbc47e02a

    please check your theme

    Psink
    Keymaster

    This CSS is responsible for the issue

    #masthead .wrapper {
    position: relative;
    left: -138px;
    margin-right: 298px;
    padding-right: 5px;
    -webkit-transform: translatex(0px) translatey(0px);
    -ms-transform: translatex(0px) translatey(0px);
    transform: translatex(0px) translatey(0px);
    }

    You can remove this css from your site where ever you did add before

    in reply to: Services Sections #191245
    Psink
    Keymaster

    Please follow the screen record and add this code on your site

    https://www.awesomescreenshot.com/video/22000035?key=d555783dfe9f1c881f0169e9486c4586

    Add this code at the end of function.php file – as in the screen record

    function unversity_pro_get_post_choices() {
    $choices = array( ” => esc_html__( ‘–Select–‘, ‘unversity-hub-pro’ ) );
    $args = array( ‘numberposts’ => -1, );
    $posts = get_posts( $args );

    foreach ( $posts as $post ) {
    $id = $post->ID;
    $title = $post->post_title;
    $choices[ $id ] = $title;
    }

    return $choices;
    }

    And add this code in the home-section.php – as in the screen record

    ‘choices’ => unversity_pro_get_post_choices(),

    in reply to: Shift a Menu item to the far left of the menu #191244
    Psink
    Keymaster

    Is it possible to share a reference screenshot? it would be easy for us to figure out the actual solution

    in reply to: Can we add plugin wpbakery #191243
    Psink
    Keymaster

    Yes, you can use add wpbakery. Since wpbakery is not tested with the theme you may get minor layout issue.
    But no worries we will assist you to fix the layout issues

    in reply to: Suppress title,remove gaps,logo size & footer #191241
    Psink
    Keymaster

    Please add this code in the Additional CSS

    .home #primary article .entry-header{
    display: none;
    }

    @media only screen and (min-width: 85.375em){
    .home .site-content > .wrapper, #featured-slider-section + .site-content > .wrapper {
    padding: 40px 30px;
    }
    }

    footer summary,
    .wp-block-coblocks-social.is-style-mask:not(.has-colors) .wp-block-button__link:not(.has-text-color) {
    color: #808080;
    }

    To chnage the padding you can change 40px to any value as per your needed
    to change the color you can change the color code

    in reply to: Associate Services Widget Not working #191240
    Psink
    Keymaster

    To set a service title first you need to create a page with that title. Then after you can select the page on the service widget. Regarding icon you can set icon class on icon field

    here is the screen record that can helps you
    https://www.awesomescreenshot.com/video/21998988?key=185d42e3fc65bd3538a6209601dd3e6d

    in reply to: Menu on mobile forced collapsed #191175
    Psink
    Keymaster

    We have fixed the issue in the latest update v1.2.4. Please update the theme

    Psink
    Keymaster

    seems you have managed to fix the issue

    in reply to: Adjust Featured Image #191114
    Psink
    Keymaster

    @BASSINLA, You can add this CSS for the slider

    .featured-slider .slick-track article{
    background-position: top;
    }

    And for featured image add this CSS

    #page-site-header {
    background-position: top !important;
    }

    Hope this helps

    Psink
    Keymaster

    To make the image larger you can change the value of the height in the below CSS

    #page-site-header {
    padding: 300px 0;
    text-align: center;
    position: relative;
    background-color: #333;
    background-size: inherit;
    background-position: top;
    background-attachment: fixed;
    height: 100vh;
    background-color: #000;
    background-repeat: no-repeat;
    }

    How does the CSS code you provided know to apply it only to the featured image on that one page, since none of the other featured images seemed to change?
    – The code will apply for every element with the id ‘page-site-header’

    Psink
    Keymaster

    You can add this CSS

    #page-site-header {
    padding: 300px 0;
    text-align: center;
    position: relative;
    background-color: #333;
    background-size: inherit;
    background-position: top;
    background-attachment: fixed;
    height: 100vh;
    background-color: #000;
    background-repeat: no-repeat;
    }

    in reply to: When i do “preview site” the blocks are all unformatted. #191078
    Psink
    Keymaster

    Seems you have used the same license on all the sites. One license only works for one site

    For more info https://themepalace.com/faq/#license

    in reply to: Changing Menu Bar Color #191071
    Psink
    Keymaster

    Regarding the menu color, here’s the CSS that changes color and text color:

    @media screen and (max-width: 1023px) {
    .main-navigation ul.nav-menu > li > a {
    color: #555;
    }

    .main-navigation ul.nav-menu {
    background-color: #FFD618;
    }

    .main-navigation form.search-form input {
    background-color: #FFD618;
    color: #000;
    }

    .main-navigation ul#primary-menu li.current-menu-item > a {
    color: #12315d;
    font-weight: 700;
    }
    }

    NOTE: You can change the color as per your requirement.

    Again, for the footer links, you can add the CSS below:

    .site-info span {
    display: flex;
    justify-content: center;
    gap: 25px;
    }

    @media screen and (min-width: 767px) {
    .site-info.col-2 span {
    width: 100%;
    }
    }

    NOTE: For spacing, you can change the gap value as per your requirement.

    Psink
    Keymaster

    Seems the issue is with the server, not with the theme. For that reason, we are unable to fix the issue of your site. So we would like you to contact your hosting provider to look into this issue. OR you can create a subdomain, install a fresh WordPress, and check if the same issue exists on a fresh site.

    In case – the issue is not solved in the fresh site you can cancel the Photobrust Pro license and request for a refund

Viewing 15 posts - 301 through 315 (of 1,555 total)