Forum Replies Created

Viewing 20 posts - 11,821 through 11,840 (of 12,035 total)
  • Author
    Posts
  • in reply to: Social Icons #132584
    Skandha
    Participant

    @mventres: Social icons visible only on hover is a theme issue which will be resolved in the next theme update. For now Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .site .footer-widget-area .widget_decree_social_icons a {
        color: #fff;
    }

    Let me know if this solves your issue!

    Regards,
    Skandha

    in reply to: Header and Slider Image Sizing #132583
    Skandha
    Participant

    @ve3eby: Glad the issue is resolved. Have a good day!

    Regards,
    Skandha

    in reply to: Collapse mobile menu on Catch Reponsive Pro #132582
    Skandha
    Participant

    @cjcjcreativedesign-com: Yes you can add a third level menu and collapse them as well.
    To make the second level menu display on clicking rather than on hover replace the text :hover with :active in the previous css code i provided you!

    Let me know if this solves your issue!

    Regards,
    Skandha

    in reply to: Change Link from logo or header #132581
    Skandha
    Participant

    @rudicash: Hello there,I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/catch-box/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that I can do to help,
    don’t hesitate to let me know.

    Regards,
    Skandha

    Skandha
    Participant

    @barrycotton: Thank you so much for your appreciation. Have a good day!

    Regards,
    Skandha

    in reply to: Header background-color #132545
    Skandha
    Participant

    @kmckay: I have made changes to your site as you described using additional CSS.

    Let me know if this solves your issue.

    Regards,
    Skandha

    in reply to: Footer Background Color won't revert to Transparent #132542
    Skandha
    Participant

    @petegwebmaster: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #supplementary .widget {
    	background-color:unset;
    }

    Let me know if this does the trick.

    Regards,
    Skandha

    in reply to: Header and Slider Image Sizing #132541
    Skandha
    Participant

    Hello @ve3eby, even if you use the recommended size the image will slightly be cropped as it needs to be adjusted in various sizes of screens. You will get the best result when you use the recommended size.

    Let me know if you have anymore issues!

    Regards,
    Skandha

    in reply to: Help – lost front page #132537
    Skandha
    Participant

    @dnelson503: I see on your site that you have got back the featured slider. Is this what you wanted?

    Let me know if you have anymore issues!

    Regards,
    Skandha

    in reply to: Change Link from logo or header #132536
    Skandha
    Participant

    @rudicash: To open the URL in a new window add target="_blank" after rel="home" in the previous code.

    Let me know if this works.

    Regards,
    Skandha

    in reply to: Missing Options in Customize Colors #132529
    Skandha
    Participant

    @ebetech: I will forward this to the development team and let you know about it. Thank you for your suggestion.

    Regards,
    Skandha

    in reply to: Social Icons #132521
    Skandha
    Participant

    @mventres: Please try disabling all the plugins and make a fresh installation of the theme. Let me know if the issue persists.

    Regards,
    Skandha

    in reply to: HTTP 500 Error unable to customise #132520
    Skandha
    Participant

    @feltfanatic: Please contact your web hosting server and ask them to increase the memory limit to a higher value.The Pro version of the theme requires higher amount of memory since there are more features available in the Pro version of the theme. Let me know if the issue persists.

    Regards,
    Skandha

    in reply to: CSS help #132519
    Skandha
    Participant

    @luismarioochoa: Hello there, I hope I was able to resolve your issue. If it’s not too much trouble, I have a quick request: could you please leave an honest review?
    https://wordpress.org/support/theme/catch-box/reviews/#new-post
    Your review will help others know what to expect when they’re looking for the support I offer. Even a sentence or two would be hugely appreciated. Thanks, and if there’s anything else at all that I can do to help,
    don’t hesitate to let me know.

    Regards,
    Skandha

    in reply to: CSS help #132517
    Skandha
    Participant

    @luismarioochoa: Try refreshing the customizer and then add additional css and check if works out. If it doesn’t, update the theme and wordpress to the latest version and let me know if the issue persists.

    Regards,
    Skandha

    in reply to: Change Link from logo or header #132516
    Skandha
    Participant

    @rudicash: You will need to create a child theme and add the following code in your functions.php file. If you don’t know how to create a child theme you can use the following plugin to generate a child theme.

    add_filter( 'get_custom_logo', 'change_logo_url' );
    function change_logo_url() {
        $custom_logo_id = get_theme_mod( 'custom_logo' );
        $html = sprintf( '<a href="%1$s" class="custom-logo-link" rel="home" itemprop="url">%2$s</a>',
                esc_url( 'www.google.com' ),
                wp_get_attachment_image( $custom_logo_id, 'full', false, array(
                    'class'    => 'custom-logo',
                ) )
            );
        return $html;   
    } 

    Replace the %1$s text with your URL.
    Let me know if this solves your issue!

    Regards,
    Skandha

    in reply to: CSS help #132514
    Skandha
    Participant

    @luismarioochoa: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #page {
    	margin-top:0;
    }
    #content article {
    	padding-left:0;
    }

    Let me know if this solves your issue!

    Regards,
    Skandha

    in reply to: CSS help #132512
    Skandha
    Participant

    @luismarioochoa: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .widget-area {
        margin-top:14px;
    }

    Let me know if this solves your issue!

    Regards,
    Skandha

    in reply to: CSS help #132510
    Skandha
    Participant

    @luismarioochoa: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    #content article {
    	padding-top:0;
    }
    .entry-content img {
    	margin-top:0;
    }

    Let me know if this solves your issue!

    Regards,
    Skandha

    in reply to: Collapse mobile menu on Catch Reponsive Pro #132505
    Skandha
    Participant

    @cjcjcreativedesign-com: Go to => Appearance => Customize => Additional CSS and add the following CSS Code.

    .sidr ul li ul { 
        display: none;
    }
    .sidr ul li:hover ul { 
        display: block; 
    }

    Let me know if this solves your issue!

    Regards,
    Skandha

Viewing 20 posts - 11,821 through 11,840 (of 12,035 total)