Forum Replies Created

Viewing 20 posts - 3,321 through 3,340 (of 4,903 total)
  • Author
    Posts
  • in reply to: Button color and sidebar #94769
    Mahesh
    Participant

    @naksnaks: Thank you for using Chicago Pro theme. Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:
    * Change to color of the “submit” button in a form

    input.wpcf7-submit[type="submit"] {
        background-color: #1e73be;
    }

    Note: Replace the hex in the above code to your desired color.

    * Add some padding to the side bar

    .sidebar-primary {
        padding: 0 10px;
    }

    Regards,
    Mahesh

    in reply to: Cannot install Simple Catch Pro version 3.3 #94744
    Mahesh
    Participant

    @rflores: After activating the plugin, go to Dashboard=> Appearance=> Widgets and drag the Twitter Timeline widget to your desired widget area. Here is the image of how it looks in the link below, hope this helps. Let me know if any problem.
    http://goo.gl/IBo4R1

    Regards,
    Mahesh

    in reply to: Can not update theme through Catch Updater plugin #94715
    Mahesh
    Participant

    @pixelwarrior: Using Catch Updater Plugin should not give such error. Please check the tutorial video for Catch Updater Plugin in the link below. Hope this helps.
    Let me know if the problem persists.

    Regards,
    Mahesh

    in reply to: Header is not at the top. #94714
    Mahesh
    Participant

    @scnelson1: This is the default structure of the theme. If you want to header image to display at the top before Featured Slider, you’ll have to create a child theme. You can find more details on creating child theme HERE. Then in your child theme’s functions.php add the following codes.

    add_action( 'init', 'fullframe_child_move_header_image_before_slider' );
    function fullframe_child_move_header_image_before_slider() {
    	remove_action( 'fullframe_before_content', 'fullframe_featured_overall_image', 20 );
    	remove_action( 'fullframe_before_content', 'fullframe_featured_slider', 10 );
    	add_action( 'fullframe_before_content', 'fullframe_featured_overall_image', 10 );
    	add_action( 'fullframe_before_content', 'fullframe_featured_slider', 20 );
    }

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Header Slider Images Not Working #94712
    Mahesh
    Participant

    @redlillies: Seems the Jetpack’s slideshow is causing the issue. Please contact Jetpack support for this issue.
    And for displaying slider image apart from demo sliders, Go to Dashboard=> Appearance=> Customize=> Featured Slider=> Slider Options and select Featured Page Slider and select the pages you want to display as slider.
    Note: Please make sure that all the page selected for Featured Page Slider has Featured Image.
    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Thumbnail Images on Blog Page #94711
    Mahesh
    Participant

    @bmtt: This Feature is already available in Pro version, I recommend you to upgrade to Pro. If you decide to have it in the Free version, you’ll need to create a child theme. You can find more details on creating child theme HERE. Then override the function catchresponsive_archive_content_image.
    Hope this helps.

    Regards,
    Mahesh

    in reply to: Search function on navigation bar #94710
    Mahesh
    Participant

    @bmtt:
    1. Turn off search function in the navigation bar:
    Go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .sidebar.sidebar-header-right.widget-area {
        display: none;
    }

    2. If I decided to keep the search function on the navigation bar, is there any way to get this to work on the responsive mobile view:
    This is working fine in mobile view.

    Let me know if any problem. And please post in your site URL.

    Regards,
    Mahesh

    in reply to: Pictures in Post #94709
    Mahesh
    Participant

    @t-dubbis: If you mean to remove the border color and caption background, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    .wp-caption {
        background: none;
        border: none;
    }

    Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Where can I download Catch Responsive Pro #94708
    Mahesh
    Participant

    @oleymedia: Sorry for the trouble. This is a sales related issue, tech team helps with the issue related to programming/coding. The sales team will help you for sure. If you have paid for the theme, you’ll definitely get it. Please contact the sales team.

    Regards,
    Mahesh

    in reply to: Cannot install Simple Catch Pro version 3.3 #94707
    Mahesh
    Participant

    @rflores: You are using Jetpack’s Twitter Timeline right? In the widget options there is an option to limit the twitter posts, put 3 in # of Tweets Shown in Twitter Timeline widget option.

    Regards,
    Mahesh

    in reply to: Non Responsive – Suddenly stopped working! :( #94706
    Mahesh
    Participant

    @redlillies: Please post in your site URL.

    Regards,
    Mahesh

    in reply to: Contenu en vedette #94705
    Mahesh
    Participant

    @magicfinger: Go to Dashboard=> Appearance=> Customize=> Featured Content and change content to “Bienvenue” in Headline for Featured Content.
    Note: This will not work if you’ve chose Demo Featured Content in Select Content Type. Please make sure you’ve selected Featured Page Content.
    If you do want to change the Featured Content to “Bienvenue” by default, you’ll have to modify fr_FR.po file and change line number 340 string msgstr "Contenu en vedette" to msgstr "Bienvenue"

    Regards,
    Mahesh

    in reply to: Home #94704
    Mahesh
    Participant

    @gdyeacu: Glad to know you’ve got what you wanted and all by yourself. Yes, sure we ready to help anytime. Have a nice day!

    Regards,
    Mahesh

    in reply to: Home #94637
    Mahesh
    Participant

    @gdyeacu: Please post in your site URL.

    Regards,
    Mahesh

    in reply to: Randomizing header images doesnt work #94636
    Mahesh
    Participant

    @taylor467: I check your site and only one header image displaying now. I tried the same with the setting on our sever and is working fine. Please make sure you’ve uploaded multiple image to the header image and click Randomize Uploaded Headers. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Woozone plugin compatability #94635
    Mahesh
    Participant

    @smoothiechode: Sorry, haven’t tested the theme with this plugin. The theme may or may not support it.

    Regards,
    Mahesh

    Mahesh
    Participant

    @nextgenf: May be it is due to caching. Please try clearing cache and check again. Let me know if any problem.

    Regards,
    Mahesh

    Mahesh
    Participant

    @smoothiechode: Glad to know you’ve got the navigation working. Yes, you’ll need to set the setting for the child theme. The purpose of child theme is to customize the theme and preserve the customization even after theme updates. Because if you customize the core theme, then you’ll lost all the customization after every update.
    Hope this helps. Let me know if any problem.

    Regards,
    Mahesh

    in reply to: Blog Excerpts not working? #94632
    Mahesh
    Participant

    @bigoslesli: Thank you for your appreciation. Have a nice day!

    Regards,
    Mahesh

    in reply to: Menu Bar #94631
    Mahesh
    Participant

    @filip_1: I checked you site, now you’ve removed some of the menu items and there are six item now. To make the menu items use all the space to the right, go to Dashboard=> Appearance=> Customize=> Theme Options=> Custom CSS box and add the following CSS:

    #menu-pocetna .menu-item {
        width: 16.565%;
    }

    Regards,
    Mahesh

Viewing 20 posts - 3,321 through 3,340 (of 4,903 total)